(self, implicit: bool, **kwargs: Any)
| 1389 | self._kill_cursors_queue.append((address, cursor_id, conn_mgr)) |
| 1390 | |
| 1391 | def _start_session(self, implicit: bool, **kwargs: Any) -> ClientSession: |
| 1392 | server_session = _EmptyServerSession() |
| 1393 | opts = client_session.SessionOptions(**kwargs) |
| 1394 | return client_session.ClientSession(self, server_session, opts, implicit) |
| 1395 | |
| 1396 | def start_session( |
| 1397 | self, |
no test coverage detected