(self, address, options, is_sdam=False, client_id=None)
| 237 | |
| 238 | class AsyncMockPool: |
| 239 | def __init__(self, address, options, is_sdam=False, client_id=None): |
| 240 | self.gen = _PoolGeneration() |
| 241 | self._lock = _async_create_lock() |
| 242 | self.opts = options |
| 243 | self.operation_count = 0 |
| 244 | self.conns = [] |
| 245 | |
| 246 | def stale_generation(self, gen, service_id): |
| 247 | return self.gen.stale(gen, service_id) |
nothing calls this directly
no test coverage detected