class twisted.conch.mixin.BufferingMixin: (source)
Mixin which adds write buffering.
Instance Variable | data | Undocumented |
Class Variable | DELAY | Undocumented |
Method | schedule | Undocumented |
Method | reschedule | Undocumented |
Method | write | Buffer some bytes to be written soon. |
Method | flush | Flush the buffer immediately. |
Instance Variable | _delayedWriteCall | Undocumented |
Buffer some bytes to be written soon.
Every call to this function delays the real write by self.DELAY
seconds. When the delay expires, all collected bytes are written to the underlying transport using ITransport.writeSequence
.