tornado.tcpclient — IOStream connection factory¶
A non-blocking TCP connection factory.
- class tornado.tcpclient.TCPClient(resolver: Optional[Resolver] = None)[source]¶
A non-blocking TCP connection factory.
Changed in version 5.0: The
io_loopargument (deprecated since version 4.1) has been removed.- coroutine connect(host: str, port: int, af: AddressFamily = AddressFamily.AF_UNSPEC, ssl_options: Optional[Union[Dict[str, Any], SSLContext]] = None, max_buffer_size: Optional[int] = None, source_ip: Optional[str] = None, source_port: Optional[int] = None, timeout: Optional[Union[float, timedelta]] = None) IOStream[source]¶
Connect to the given host and port.
Asynchronously returns an
IOStream(orSSLIOStreamifssl_optionsis not None).Using the
source_ipkwarg, one can specify the source IP address to use when establishing the connection. In case the user needs to resolve and use a specific interface, it has to be handled outside of Tornado as this depends very much on the platform.Raises
TimeoutErrorif the input future does not complete beforetimeout, which may be specified in any form allowed byIOLoop.add_timeout(i.e. adatetime.timedeltaor an absolute time relative toIOLoop.time)Similarly, when the user requires a certain source port, it can be specified using the
source_portarg.Changed in version 4.5: Added the
source_ipandsource_portarguments.Changed in version 5.0: Added the
timeoutargument.