class documentation

class Limits:

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.
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):

Undocumented

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

Undocumented

Parameters
max​_connections:intUndocumented
max​_keepalive​_connections:intUndocumented
keepalive​_expiry:typing.Optional[float]Undocumented
def __repr__(self):

Undocumented

Returns
strUndocumented
keepalive_expiry =

Undocumented

max_connections =

Undocumented

max_keepalive_connections =

Undocumented