class documentation

class ShapedTransport(ShapedConsumer): (source)

View In Hierarchy

Wraps a Transport and shapes the rate at which it receives data.

This is a ShapedConsumer with a little bit of magic to provide for the case where the consumer it wraps is also a Transport and people will be attempting to access attributes this does not proxy as a Consumer (e.g. loseConnection).

Method __getattr__ Undocumented
Class Variable i​Am​Streaming Undocumented

Inherited from ShapedConsumer:

Method __init__ Undocumented
Method stop​Producing Stop producing data.
Instance Variable bucket Undocumented
Method _write​Some​Data Write as much of this data as possible.

Inherited from ProducerConsumerProxy (via ShapedConsumer):

Method pause​Producing Undocumented
Method register​Producer Register to receive data from a producer.
Method resume​Producing Undocumented
Method unregister​Producer Stop consuming data from a producer, without disconnecting.
Method write The producer will write data by calling this method.
Class Variable buffer​Size Undocumented
Instance Variable outstanding​Pull Undocumented
Instance Variable paused Undocumented
Instance Variable producer​Paused Undocumented
Instance Variable unregistered Undocumented

Inherited from BasicProducerConsumerProxy (via ShapedConsumer, ProducerConsumerProxy):

Method __repr__ Undocumented
Method finish Undocumented
Class Variable stopped Undocumented
Instance Variable consumer the Consumer I publish to.
Instance Variable producer the Producer I subscribe to.
Instance Variable producer​Is​Streaming Undocumented
Instance Variable _buffer Undocumented
def __getattr__(self, name): (source)

Undocumented