class IntNStringReceiver(protocol.Protocol, _PauseableMixin): (source)
Known subclasses: twisted.protocols.basic.Int16StringReceiver
, twisted.protocols.basic.Int32StringReceiver
, twisted.protocols.basic.Int8StringReceiver
Generic class for length prefixed protocols.
Method | data |
Convert int prefixed strings into calls to stringReceived. |
Method | length |
Callback invoked when a length prefix greater than MAX_LENGTH is received. The default implementation disconnects the transport. Override this. |
Method | send |
Send a prefixed string to the other end of the connection. |
Method | string |
Override this for notification when each complete string is received. |
Constant | MAX |
Undocumented |
Class Variable | recvd |
Undocumented |
Instance Variable | prefix |
length of the prefix, in bytes. Define it in subclass, using struct.calcsize(structFormat) |
Instance Variable | struct |
format used for struct packing/unpacking. Define it in subclass. |
Instance Variable | _compatibility |
the offset within _unprocessed to the next message to be parsed. (used to generate the recvd attribute) |
Instance Variable | _unprocessed |
bytes received, but not yet broken up into messages / sent to stringReceived. _compatibilityOffset must be updated when this value is updated so that the recvd attribute can be generated correctly. |
Inherited from Protocol
:
Method | connection |
Called when the connection is shut down. |
Method | log |
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 | connection |
Called when a connection is made. |
Method | make |
Make a connection to a transport and a server. |
Instance Variable | connected |
Undocumented |
Instance Variable | transport |
Undocumented |
Inherited from _PauseableMixin
(via Protocol
, BaseProtocol
):
Method | pause |
Undocumented |
Method | resume |
Undocumented |
Method | stop |
Undocumented |
Instance Variable | paused |
Undocumented |
twisted.protocols.amp.BinaryBoxProtocol
Convert int prefixed strings into calls to stringReceived.
twisted.protocols.amp.BinaryBoxProtocol
Callback invoked when a length prefix greater than MAX_LENGTH is received. The default implementation disconnects the transport. Override this.
Parameters | |
length:int | The length prefix which was received. |
Send a prefixed string to the other end of the connection.
Parameters | |
string:bytes | The string to send. The necessary framing (length prefix, etc) will be added. |
Override this for notification when each complete string is received.
Parameters | |
string:bytes | The complete string which was received with all framing (length prefix, etc) removed. |
twisted.protocols.basic.Int16StringReceiver
, twisted.protocols.basic.Int32StringReceiver
, twisted.protocols.basic.Int8StringReceiver
length of the prefix, in bytes. Define it in subclass, using struct.calcsize(structFormat)
twisted.protocols.basic.Int16StringReceiver
, twisted.protocols.basic.Int32StringReceiver
, twisted.protocols.basic.Int8StringReceiver
format used for struct packing/unpacking. Define it in subclass.