1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
from typing import Any
from ..util import memoized_property
from .base import Pool
class QueuePool(Pool):
def __init__(
self, creator, pool_size: int = ..., max_overflow: int = ..., timeout: float = ..., use_lifo: bool = ..., **kw
) -> None: ...
def recreate(self): ...
def dispose(self) -> None: ...
def status(self): ...
def size(self): ...
def timeout(self): ...
def checkedin(self): ...
def overflow(self): ...
def checkedout(self): ...
class AsyncAdaptedQueuePool(QueuePool): ...
class FallbackAsyncAdaptedQueuePool(AsyncAdaptedQueuePool): ...
class NullPool(Pool):
def status(self): ...
def recreate(self): ...
def dispose(self) -> None: ...
class SingletonThreadPool(Pool):
size: Any
def __init__(self, creator, pool_size: int = ..., **kw) -> None: ...
def recreate(self): ...
def dispose(self) -> None: ...
def status(self): ...
def connect(self): ...
class StaticPool(Pool):
@memoized_property
def connection(self): ...
def status(self): ...
def dispose(self) -> None: ...
def recreate(self): ...
class AssertionPool(Pool):
def __init__(self, *args, **kw) -> None: ...
def status(self): ...
def dispose(self) -> None: ...
def recreate(self): ...
|