Home
last modified time | relevance | path

Searched refs:BufferedProtocol (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython3/Lib/asyncio/
Dprotocols.py109 class BufferedProtocol(BaseProtocol): class
Dsslproto.py459 isinstance(app_protocol, protocols.BufferedProtocol)
Dproactor_events.py258 if isinstance(self._protocol, protocols.BufferedProtocol):
Dselector_events.py786 if isinstance(protocol, protocols.BufferedProtocol):
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_buffered_proto.py11 class ReceiveStuffProto(asyncio.BufferedProtocol):
Dtest_protocols.py31 p = asyncio.BufferedProtocol()
Dtest_sslproto.py173 class Proto(asyncio.BufferedProtocol):
372 class ClientProtoFirst(asyncio.BufferedProtocol):
Dtest_selector_events.py900 self.protocol = test_utils.make_test_protocol(asyncio.BufferedProtocol)
959 buf_proto = test_utils.make_test_protocol(asyncio.BufferedProtocol)
/external/python/cpython3/Doc/library/
Dasyncio-protocol.rst60 :class:`Protocol`, :class:`BufferedProtocol`,
464 .. class:: BufferedProtocol(BaseProtocol)
595 ``BufferedProtocol`` implementations allow explicit manual allocation
602 The following callbacks are called on :class:`BufferedProtocol`
605 .. method:: BufferedProtocol.get_buffer(sizehint)
617 .. method:: BufferedProtocol.buffer_updated(nbytes)
623 .. method:: BufferedProtocol.eof_received()
629 :meth:`~BufferedProtocol.get_buffer` can be called an arbitrary number
632 and, if called, :meth:`~BufferedProtocol.get_buffer` and
633 :meth:`~BufferedProtocol.buffer_updated` won't be called after it.
Dasyncio-llapi-index.rst445 * - ``callback`` :meth:`get_buffer() <BufferedProtocol.get_buffer>`
448 * - ``callback`` :meth:`buffer_updated() <BufferedProtocol.buffer_updated>`
451 * - ``callback`` :meth:`eof_received() <BufferedProtocol.eof_received>`
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b5.rst187 and asyncio.BufferedProtocol. Fix loop.start_tls() to work with
D3.7.0b1.rst265 Implement asyncio.BufferedProtocol (provisional API).
D3.8.0a1.rst4527 and asyncio.BufferedProtocol. Fix loop.start_tls() to work with
/external/python/cpython3/Doc/whatsnew/
D3.8.rst1978 * :class:`asyncio.BufferedProtocol` has graduated to the stable API.
D3.7.rst675 * The new *provisional* :class:`~asyncio.BufferedProtocol` class allows