class documentation
class QueuedConnection(object):
Constructor: QueuedConnection(connection, queue_size)
It wraps a Transport instance and behaves like one but it queues the data written to it and relays them asynchronously to the wrapped instance.
Method | __getattr__ |
Undocumented |
Method | __init__ |
ctor. @param connection: the wrapped transport instance @type connection: Transport @param queue_size: the maximum size of the queue, zero means infinite @type queue_size: int |
Method | write |
Undocumented |
Method | _closed |
Undocumented |
Method | _run |
Undocumented |
Instance Variable | _cond |
Undocumented |
Instance Variable | _connection |
Undocumented |
Instance Variable | _error |
Undocumented |
Instance Variable | _lock |
Undocumented |
Instance Variable | _queue |
Undocumented |
Instance Variable | _queue |
Undocumented |
Instance Variable | _thread |
Undocumented |