«
interface documentation

class IBoxSender(Interface):

Known implementations: twisted.protocols.amp.BinaryBoxProtocol

View In Hierarchy

A transport which can send AmpBox objects.

Method sendBox Send an AmpBox.
Method unhandledError An unhandled error occurred in response to a box. Log it appropriately.
def sendBox(box):

Send an AmpBox.

Raises
ProtocolSwitchedif the underlying protocol has been switched.
ConnectionLostif the underlying connection has already been lost.
def unhandledError(failure):

An unhandled error occurred in response to a box. Log it appropriately.

Parameters
failurea Failure describing the error that occurred.