(self)
| 61 | raise NotImplementedError() |
| 62 | |
| 63 | async def close(self): |
| 64 | if self.async_core_engine is not None: |
| 65 | await self.async_core_engine.dispose() |
| 66 | |
| 67 | if self.async_tracing_engine is not None: |
| 68 | await self.async_tracing_engine.dispose() |
| 69 | |
| 70 | @asynccontextmanager |
| 71 | async def core_session(self) -> AsyncGenerator[AsyncSession, None]: |
no outgoing calls