Home | History | Annotate | Download | only in asyncio

Lines Matching refs:Transport

61         client side transport.
285 transports.Transport):
296 """Get optional transport information."""
309 """Close the transport.
321 warnings.warn(f"unclosed transport {self!r}", ResourceWarning,
328 raise RuntimeError('SSL transport has not been initialized yet')
378 """Write some data bytes to the transport.
391 """Return True if this transport supports write_eof(), False if not."""
395 """Close the transport immediately.
453 # transport, ex: SelectorSocketTransport
473 def connection_made(self, transport):
478 self._transport = transport
496 # Just mark the app transport as closed so that its __del__
505 """Called when the low-level transport's buffer goes over
511 """Called when the low-level transport's buffer drains below
522 # transport closing, sslpipe is destroyed
554 If this returns a false value (including None), the transport
556 transport is up to the protocol.
650 # In case transport.write() was already called. Don't call
696 self._fatal_error(exc, 'Fatal error on SSL transport')
698 def _fatal_error(self, exc, message='Fatal error on transport'):
706 'transport': self._transport,