twisted.conch.mixin.BufferingMixin
class documentationtwisted.conch.mixin
View Source
(View In Hierarchy)
Mixin which adds write buffering.
Method | schedule | Undocumented |
Method | reschedule | Undocumented |
Method | write | Buffer some bytes to be written soon. |
Method | flush | Flush the buffer immediately. |
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
.