class Client(_BaseBaseClient, _BaseTCPClient, Connection): (source)
Constructor: Client(host, port, bindAddress, connector, reactor)
Method | __init__ |
Undocumented |
Method | cb |
Undocumented |
Method | create |
Create a socket registered with the IOCP reactor. |
Method | do |
Undocumented |
Instance Variable | reactor |
Undocumented |
Method | _collect |
Clean up potentially circular references to the socket and to its getFileHandle method. |
Method | _stop |
Remove the active handle from the reactor. |
Instance Variable | _tls |
Always True, indicating that this is a client connection, and by default when TLS is negotiated this class will act as a TLS client. |
Inherited from _BaseBaseClient
:
Method | connection |
Invoked by lower-level logic when it's time to clean the socket up. Depending on the state of the connection, either inform the attached Connector that the connection attempt has failed, or inform the connected ... |
Method | fail |
Generic method called when the attempts to connect failed. It basically cleans everything it can: call connectionFailed, stop read and write, delete socket related members. |
Method | resolve |
Resolve the name that was passed to this _BaseBaseClient , if necessary, and then move on to attempting the connection once an address has been determined. (The connection will be attempted immediately within this function if either name resolution can be synchronous or the address was an IP address literal... |
Method | stop |
If a connection attempt is still outstanding (i.e. no connection is yet established), immediately stop attempting to connect. |
Instance Variable | address |
The address family constant (socket.AF_INET, socket.AF_INET6, socket.AF_UNIX) of the underlying socket of this client connection. |
Instance Variable | real |
Undocumented |
Instance Variable | socket |
The socket type constant (socket.SOCK_STREAM or socket.SOCK_DGRAM) of the underlying socket. |
Method | _finish |
Called by subclasses to continue to the stage of initialization where the socket connect attempt is made. |
Method | _set |
Set the resolved address of this _BaseBaseClient and initiate the connection attempt. |
Class Variable | _common |
Subclasses must provide this attribute, which indicates the Connection -alike class to invoke __init__ and connectionLost on. |
Instance Variable | _close |
Subclasses must implement in order to close the socket in response to a terminated connection attempt. |
Instance Variable | _requires |
A flag indicating whether the address of this client will require name resolution. True if the hostname of said address indicates a name that must be resolved by hostname lookup, False if it indicates an IP address literal. |
Inherited from _BaseTCPClient
(via _BaseBaseClient
):
Method | __repr__ |
Undocumented |
Method | get |
Returns an IPv4Address or IPv6Address . |
Method | get |
Returns an IPv4Address or IPv6Address . |
Instance Variable | addr |
The address that this socket will be connecting to. |
Instance Variable | connector |
The Connector which is driving this _BaseTCPClient 's connection attempt. |
Instance Variable | _address |
The Twisted _IPAddress implementation for this client |
Inherited from Connection
(via _BaseBaseClient
, _BaseTCPClient
):
Method | data |
No summary |
Method | get |
Return a system- and reactor-specific handle. |
Method | get |
Return if SO_KEEPALIVE is enabled. |
Method | get |
Return if TCP_NODELAY is enabled. |
Method | log |
Return the prefix to log with when I own the logging thread. |
Method | lose |
Close the underlying handle or, if TLS has been started, first shut it down. |
Method | read |
Indicates read connection was lost. |
Method | read |
Read into the given buffers from this handle. |
Method | register |
Register a producer. |
Method | set |
Enable/disable SO_KEEPALIVE. |
Method | set |
Enable/disable TCP_NODELAY. |
Method | start |
No summary |
Method | unregister |
Unregister a producer. |
Method | write |
Write some data, either directly to the underlying handle or, if TLS has been started, to the TLSMemoryBIOProtocol for it to encrypt and send. |
Method | write |
Write some data, either directly to the underlying handle or, if TLS has been started, to the TLSMemoryBIOProtocol for it to encrypt and send. |
Method | write |
Send buff to current file handle using _iocp.send. The buffer sent is limited to a size of self.SEND_LIMIT. |
Constant | TLS |
False to indicate the connection is in normal TCP mode, True to indicate that TLS has been started and that operations must be routed through the TLSMemoryBIOProtocol instance. |
Instance Variable | protocol |
Undocumented |
Instance Variable | socket |
Undocumented |
Method | _close |
Undocumented |
Inherited from FileHandle
(via _BaseBaseClient
, _BaseTCPClient
, Connection
):
Method | do |
Undocumented |
Method | do |
Undocumented |
Method | get |
Undocumented |
Method | lose |
Undocumented |
Method | pause |
Pause producing data. |
Method | resume |
Resume producing data. |
Method | start |
Undocumented |
Method | start |
Override in a subclass to cause the reactor to monitor this selectable for write events. This will be called once in unregisterProducer if loseConnection has previously been called, so that the connection can actually close. |
Method | stop |
Stop consuming data. |
Method | stop |
Stop producing data. |
Method | stop |
Undocumented |
Method | stop |
Undocumented |
Method | write |
Indicates write connection was lost. |
Constant | SEND |
Undocumented |
Class Variable | disconnecting |
Undocumented |
Class Variable | dynamic |
Undocumented |
Class Variable | logstr |
Undocumented |
Class Variable | max |
Undocumented |
Class Variable | read |
Undocumented |
Class Variable | write |
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 | reading |
Undocumented |
Instance Variable | writing |
Undocumented |
Method | _cb |
Undocumented |
Method | _cb |
Undocumented |
Method | _dispatch |
Dispatch previously read data. Return True if self.reading and we don't have any more data |
Method | _handle |
Returns False if we should stop reading for now |
Method | _handle |
Returns false if we should stop writing for now |
Method | _resume |
Undocumented |
Method | _resume |
Undocumented |
Class Variable | _write |
Undocumented |
Instance Variable | _read |
Undocumented |
Instance Variable | _read |
Undocumented |
Instance Variable | _read |
Undocumented |
Instance Variable | _read |
Undocumented |
Instance Variable | _read |
Undocumented |
Instance Variable | _temp |
Undocumented |
Instance Variable | _temp |
Undocumented |
Instance Variable | _write |
Undocumented |
Instance Variable | _write |
Undocumented |
Inherited from _ConsumerMixin
(via _BaseBaseClient
, _BaseTCPClient
, Connection
, FileHandle
):
Instance Variable | streaming |
bool or int |
Inherited from _LogOwner
(via _BaseBaseClient
, _BaseTCPClient
, Connection
, FileHandle
, _ConsumerMixin
):
Method | _get |
Determine the log prefix to use for messages related to applicationObject, which may or may not be an interfaces.ILoggingContext provider. |
Inherited from _SocketCloser
(via _BaseBaseClient
, _BaseTCPClient
, Connection
, FileHandle
, _ConsumerMixin
, _LogOwner
):
Instance Variable | _should |
Set to True if shutdown should be called before calling close on the underlying socket. |
Inherited from _AbortingMixin
(via _BaseBaseClient
, _BaseTCPClient
, Connection
, FileHandle
, _ConsumerMixin
, _LogOwner
, _SocketCloser
):
Method | abort |
Aborts the connection immediately, dropping any buffered data. |
Instance Variable | _aborting |
Set to True when abortConnection is called. |
Clean up potentially circular references to the socket and to its getFileHandle method.
See Also | |
_BaseBaseClient |