class documentation
class BasePort(abstract.FileDescriptor): (source)
Known subclasses: twisted.internet.tcp.Port
, twisted.internet.udp.Port
Constructor: BasePort(reactor)
Basic implementation of a ListeningPort.
Note: This does not actually implement IListeningPort.
Method | create |
Undocumented |
Method | do |
Raises a RuntimeError |
Class Variable | address |
Undocumented |
Class Variable | socket |
Undocumented |
Inherited from FileDescriptor
:
Method | __init__ |
No summary |
Method | connection |
The connection was lost. |
Method | do |
Called when data is available for reading. |
Method | fileno |
File Descriptor number for select(). |
Method | get |
Similar to getPeer, but returns an address describing this side of the connection. |
Method | get |
Get the remote address of this connection. |
Method | lose |
Close the connection at the next available opportunity. |
Method | lose |
Undocumented |
Method | pause |
Pause producing data. |
Method | read |
Indicates read connection was lost. |
Method | resume |
Resume producing data. |
Method | start |
Start waiting for read availability. |
Method | start |
Start waiting for write availability. |
Method | stop |
Stop consuming data. |
Method | stop |
Stop producing data. |
Method | stop |
Stop waiting for read availability. |
Method | stop |
Stop waiting for write availability. |
Method | write |
Reliably write some data. |
Method | write |
Indicates write connection was lost. |
Method | write |
Reliably write a sequence of data. |
Method | write |
Write as much as possible of the given data, immediately. |
Constant | SEND |
Undocumented |
Class Variable | buffer |
Undocumented |
Class Variable | disconnecting |
Undocumented |
Instance Variable | connected |
Undocumented |
Instance Variable | data |
Undocumented |
Instance Variable | disconnected |
Undocumented |
Instance Variable | offset |
Undocumented |
Instance Variable | producer |
Undocumented |
Instance Variable | producer |
Undocumented |
Instance Variable | reactor |
Undocumented |
Method | _close |
Undocumented |
Method | _is |
Determine whether the user-space send buffer for this transport is full or not. |
Method | _maybe |
Possibly pause a producer, if there is one and the send buffer is full. |
Method | _post |
Called after a loseConnection(), when all data has been written. |
Class Variable | _write |
Undocumented |
Instance Variable | _temp |
Undocumented |
Instance Variable | _temp |
Undocumented |
Instance Variable | _write |
Undocumented |
Inherited from _ConsumerMixin
(via FileDescriptor
):
Method | register |
Register to receive data from a producer. |
Method | unregister |
Stop consuming data from a producer, without disconnecting. |
Instance Variable | streaming |
bool or int |
Inherited from _LogOwner
(via FileDescriptor
, _ConsumerMixin
):
Method | log |
Override this method to insert custom logging behavior. Its return value will be inserted in front of every line. It may be called more times than the number of output lines. |
Method | _get |
Determine the log prefix to use for messages related to applicationObject, which may or may not be an interfaces.ILoggingContext provider. |