/usr/lib/python3/dist-packages/twisted/conch
NameSizeModeActions
client/-0755rm
insults/-0755rm
openssh_compat/-0755rm
scripts/-0755rm
ssh/-0755rm
test/-0755rm
ui/-0755rm
__pycache__/-0755rm
avatar.py16410644editdlrm
checkers.py194220644editdlrm
endpoints.py299610644editdlrm
error.py26590644editdlrm
interfaces.py149180644editdlrm
ls.py26930644editdlrm
manhole.py118440644editdlrm
manhole_ssh.py44270644editdlrm
manhole_tap.py54840644editdlrm
mixin.py13730644editdlrm
recvline.py191630644editdlrm
stdio.py27730644editdlrm
tap.py31900644editdlrm
telnet.py380540644editdlrm
ttymodes.py21950644editdlrm
unix.py165500644editdlrm
__init__.py1980644editdlrm
Edit: /usr/lib/python3/dist-packages/twisted/conch/mixin.py (1373B)
# -*- test-case-name: twisted.conch.test.test_mixin -*- # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Experimental optimization This module provides a single mixin class which allows protocols to collapse numerous small writes into a single larger one. @author: Jp Calderone """ from twisted.internet import reactor class BufferingMixin: """ Mixin which adds write buffering. """ _delayedWriteCall = None data = None DELAY = 0.0 def schedule(self): return reactor.callLater(self.DELAY, self.flush) def reschedule(self, token): token.reset(self.DELAY) def write(self, data): """ Buffer some bytes to be written soon. Every call to this function delays the real write by C{self.DELAY} seconds. When the delay expires, all collected bytes are written to the underlying transport using L{ITransport.writeSequence}. """ if self._delayedWriteCall is None: self.data = [] self._delayedWriteCall = self.schedule() else: self.reschedule(self._delayedWriteCall) self.data.append(data) def flush(self): """ Flush the buffer immediately. """ self._delayedWriteCall = None self.transport.writeSequence(self.data) self.data = None