Module « asyncio »
Python 3.11.3
Classe « Transport »
Informations générales
Héritage
builtins.object
BaseTransport
WriteTransport
builtins.object
BaseTransport
ReadTransport
Transport
Définition
class Transport(ReadTransport, WriteTransport):
help(Transport)
Interface representing a bidirectional transport.
There may be several implementations, but typically, the user does
not implement new transports; rather, the platform provides some
useful transports that are implemented using the platform's best
practices.
The user never instantiates a transport directly; they call a
utility function, passing it a protocol factory and other
information necessary to create the transport and protocol. (E.g.
EventLoop.create_connection() or EventLoop.create_server().)
The utility function will asynchronously create a transport and a
protocol and hook them up by calling the protocol's
connection_made() method, passing it the transport.
The implementation here raises NotImplemented for every method
except writelines(), which calls write() in a loop.
Constructeur(s)
Liste des opérateurs
Opérateurs hérités de la classe object
__eq__,
__ge__,
__gt__,
__le__,
__lt__,
__ne__
Liste des méthodes
Toutes les méthodes
Méthodes d'instance
Méthodes statiques
Méthodes dépréciées
Méthodes héritées de la classe WriteTransport
__init_subclass__, __subclasshook__, abort, can_write_eof, get_write_buffer_limits, get_write_buffer_size, set_write_buffer_limits, write, write_eof, writelines
Méthodes héritées de la classe ReadTransport
is_reading, pause_reading, resume_reading
Méthodes héritées de la classe BaseTransport
close, get_extra_info, get_protocol, is_closing, set_protocol
Méthodes héritées de la classe object
__delattr__,
__dir__,
__format__,
__getattribute__,
__getstate__,
__hash__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__
Améliorations / Corrections
Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.
Emplacement :
Description des améliorations :