(self, execution_profile)
| 2853 | return future |
| 2854 | |
| 2855 | def _maybe_set_graph_paging(self, execution_profile): |
| 2856 | graph_paging = execution_profile.continuous_paging_options |
| 2857 | if execution_profile.continuous_paging_options is _NOT_SET: |
| 2858 | graph_paging = ContinuousPagingOptions() if self._graph_paging_available else None |
| 2859 | |
| 2860 | execution_profile.continuous_paging_options = graph_paging |
| 2861 | |
| 2862 | def _check_graph_paging_available(self): |
| 2863 | """Verify if we can enable graph paging. This executed only once when the session is created.""" |
no test coverage detected