class documentation

class Receiver(Protocol):

View In Hierarchy

Simple Receiver class used for testing LoopbackRelay

Method dataReceived Accumulate received data for verification
Class Variable data Undocumented

Inherited from Protocol:

Method connectionLost Called when the connection is shut down.
Method logPrefix Return a prefix matching the class name, to identify log messages related to this protocol instance.
Class Variable factory Undocumented

Inherited from BaseProtocol (via Protocol):

Method connectionMade Called when a connection is made.
Method makeConnection Make a connection to a transport and a server.
Instance Variable connected Undocumented
Instance Variable transport Undocumented
def dataReceived(self, data):

Accumulate received data for verification

data: bytes =

Undocumented