Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/asyncio/
Dprotocols.py105 class BufferedProtocol(BaseProtocol): class
Dsslproto.py461 isinstance(app_protocol, protocols.BufferedProtocol)
Dproactor_events.py235 if isinstance(self._protocol, protocols.BufferedProtocol):
Dselector_events.py737 if isinstance(protocol, protocols.BufferedProtocol):
/external/python/cpython3/Doc/library/
Dasyncio-protocol.rst60 :class:`Protocol`, :class:`BufferedProtocol`,
456 .. class:: BufferedProtocol(BaseProtocol)
590 ``BufferedProtocol`` implementations allow explicit manual allocation
597 The following callbacks are called on :class:`BufferedProtocol`
600 .. method:: BufferedProtocol.get_buffer(sizehint)
612 .. method:: BufferedProtocol.buffer_updated(nbytes)
618 .. method:: BufferedProtocol.eof_received()
624 :meth:`~BufferedProtocol.get_buffer` can be called an arbitrary number
627 and, if called, :meth:`~BufferedProtocol.get_buffer` and
628 :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/Lib/test/test_asyncio/
Dtest_buffered_proto.py7 class ReceiveStuffProto(asyncio.BufferedProtocol):
Dtest_sslproto.py168 class Proto(asyncio.BufferedProtocol):
299 class ClientProtoFirst(asyncio.BufferedProtocol):
Dtest_proactor_events.py482 self.protocol = test_utils.make_test_protocol(asyncio.BufferedProtocol)
551 buf_proto = test_utils.make_test_protocol(asyncio.BufferedProtocol)
574 buf_proto = test_utils.make_test_protocol(asyncio.BufferedProtocol)
Dtest_selector_events.py1287 self.protocol = test_utils.make_test_protocol(asyncio.BufferedProtocol)
1346 buf_proto = test_utils.make_test_protocol(asyncio.BufferedProtocol)
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b5.rst187 and asyncio.BufferedProtocol. Fix loop.start_tls() to work with
D3.7.0b1.rst266 Implement asyncio.BufferedProtocol (provisional API).
/external/python/cpython3/Doc/whatsnew/
D3.7.rst670 * The new *provisional* :class:`~asyncio.BufferedProtocol` class allows