class BufferingMixin: (source)
Method | flush |
Flush the buffer immediately. |
Method | reschedule |
Undocumented |
Method | schedule |
Undocumented |
Method | write |
Buffer some bytes to be written soon. |
Constant | DELAY |
Undocumented |
Instance Variable | data |
Undocumented |
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
.