class documentation

class Limits: (source)

View In Hierarchy

Configuration for limits to various client behaviors. **Parameters:** * **max_connections** - The maximum number of concurrent connections that may be established. * **max_keepalive_connections** - Allow the connection pool to maintain keep-alive connections below this point. Should be less than or equal to `max_connections`. * **keepalive_expiry** - Time limit on idle keep-alive connections in seconds.

Method __eq__ Undocumented
Method __init__ Undocumented
Method __repr__ Undocumented
Instance Variable keepalive_expiry Undocumented
Instance Variable max_connections Undocumented
Instance Variable max_keepalive_connections Undocumented
def __eq__(self, other): (source)

Undocumented

Parameters
other:typing.AnyUndocumented
Returns
boolUndocumented
def __init__(self, *, max_connections=None, max_keepalive_connections=None, keepalive_expiry=5.0): (source)

Undocumented

Parameters
max_connections:typing.Optional[int]Undocumented
max_keepalive_connections:typing.Optional[int]Undocumented
keepalive_expiry:typing.Optional[float]Undocumented
def __repr__(self): (source)

Undocumented

Returns
strUndocumented
keepalive_expiry = (source)

Undocumented

max_connections = (source)

Undocumented

max_keepalive_connections = (source)

Undocumented