class documentation
class ThrottlingFactory(WrappingFactory): (source)
Constructor: ThrottlingFactory(wrappedFactory, maxConnectionCount, readLimit, writeLimit)
Throttles bandwidth and number of connections.
Write bandwidth will only be throttled if there is a producer registered.
Method | __init__ |
Undocumented |
Method | build |
Create an instance of a subclass of Protocol. |
Method | call |
Wrapper around reactor.callLater for test purpose. |
Method | check |
Checks if we've passed bandwidth limits. |
Method | check |
Undocumented |
Method | register |
Called by protocol to tell us more bytes were read. |
Method | register |
Called by protocol to tell us more bytes were written. |
Method | throttle |
Throttle reads on all protocols. |
Method | throttle |
Throttle writes on all protocols. |
Method | unregister |
Called by protocols when they go away. |
Method | unthrottle |
Stop throttling reads on all protocols. |
Method | unthrottle |
Stop throttling writes on all protocols. |
Instance Variable | check |
Undocumented |
Instance Variable | check |
Undocumented |
Instance Variable | connection |
Undocumented |
Instance Variable | max |
Undocumented |
Instance Variable | read |
Undocumented |
Instance Variable | read |
Undocumented |
Instance Variable | unthrottle |
Undocumented |
Instance Variable | unthrottle |
Undocumented |
Instance Variable | write |
Undocumented |
Instance Variable | written |
Undocumented |
Inherited from WrappingFactory
:
Method | client |
Called when a connection has failed to connect. |
Method | client |
Called when an established connection is lost. |
Method | do |
Make sure startFactory is called. |
Method | do |
Make sure stopFactory is called. |
Method | log |
Generate a log prefix mentioning both the wrapped factory and this one. |
Method | register |
Called by protocol to register itself. |
Method | started |
Called when a connection has been started. |
Instance Variable | protocols |
Undocumented |
Instance Variable | wrapped |
Undocumented |
Inherited from Factory
(via WrappingFactory
, ClientFactory
):
Class Method | for |
Create a factory for the given protocol. |
Method | start |
This will be called before I begin listening on a Port or Connector. |
Method | stop |
This will be called before I stop listening on all Ports/Connectors. |
Class Variable | noisy |
Undocumented |
Class Variable | protocol |
Undocumented |
Instance Variable | num |
Undocumented |
def __init__(self, wrappedFactory, maxConnectionCount=sys.maxsize, readLimit=None, writeLimit=None):
(source)
¶
Undocumented
Create an instance of a subclass of Protocol.
The returned instance will handle input on an incoming server connection, and an attribute "factory" pointing to the creating factory.
Alternatively, None
may be returned to immediately close the new connection.
Override this method to alter how Protocol instances get created.
Parameters | |
addr | an object implementing IAddress |