class documentation

Wrap another protocol in order to notify my user when a connection has been made.

Method __init__ No summary
Method connectionLost Proxy connectionLost calls to our self._wrappedProtocol
Method connectionMade Connect the self._wrappedProtocol to our self.transport and callback self._connectedDeferred with the self._wrappedProtocol
Method dataReceived Proxy dataReceived calls to our self._wrappedProtocol
Method fileDescriptorReceived Proxy fileDescriptorReceived calls to our self._wrappedProtocol
Method handshakeCompleted Proxy interfaces.IHandshakeListener to our self._wrappedProtocol.
Method logPrefix Transparently pass through the wrapped protocol's log prefix.
Method readConnectionLost Proxy IHalfCloseableProtocol.readConnectionLost to our self._wrappedProtocol
Method writeConnectionLost Proxy IHalfCloseableProtocol.writeConnectionLost to our self._wrappedProtocol
Instance Variable _connectedDeferred Undocumented
Instance Variable _wrappedProtocol Undocumented

Inherited from Protocol:

Class Variable factory Undocumented

Inherited from BaseProtocol (via Protocol):

Method makeConnection Make a connection to a transport and a server.
Instance Variable connected Undocumented
Instance Variable transport Undocumented
def __init__(self, connectedDeferred, wrappedProtocol):
Parameters
connectedDeferredThe Deferred that will callback with the wrappedProtocol when it is connected.
wrappedProtocolAn IProtocol provider that will be connected.
def connectionLost(self, reason):

Proxy connectionLost calls to our self._wrappedProtocol

def connectionMade(self):

Connect the self._wrappedProtocol to our self.transport and callback self._connectedDeferred with the self._wrappedProtocol

def dataReceived(self, data):

Proxy dataReceived calls to our self._wrappedProtocol

def fileDescriptorReceived(self, descriptor):

Proxy fileDescriptorReceived calls to our self._wrappedProtocol

def handshakeCompleted(self):

Proxy interfaces.IHandshakeListener to our self._wrappedProtocol.

def logPrefix(self):

Transparently pass through the wrapped protocol's log prefix.

def readConnectionLost(self):

Proxy IHalfCloseableProtocol.readConnectionLost to our self._wrappedProtocol

def writeConnectionLost(self):

Proxy IHalfCloseableProtocol.writeConnectionLost to our self._wrappedProtocol

_connectedDeferred =

Undocumented

_wrappedProtocol =

Undocumented