Searched refs:BufferedProtocol (Results 1 – 15 of 15) sorted by relevance
109 class BufferedProtocol(BaseProtocol): class
459 isinstance(app_protocol, protocols.BufferedProtocol)
258 if isinstance(self._protocol, protocols.BufferedProtocol):
786 if isinstance(protocol, protocols.BufferedProtocol):
11 class ReceiveStuffProto(asyncio.BufferedProtocol):
31 p = asyncio.BufferedProtocol()
173 class Proto(asyncio.BufferedProtocol):372 class ClientProtoFirst(asyncio.BufferedProtocol):
900 self.protocol = test_utils.make_test_protocol(asyncio.BufferedProtocol)959 buf_proto = test_utils.make_test_protocol(asyncio.BufferedProtocol)
60 :class:`Protocol`, :class:`BufferedProtocol`,464 .. class:: BufferedProtocol(BaseProtocol)595 ``BufferedProtocol`` implementations allow explicit manual allocation602 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 number632 and, if called, :meth:`~BufferedProtocol.get_buffer` and633 :meth:`~BufferedProtocol.buffer_updated` won't be called after it.
445 * - ``callback`` :meth:`get_buffer() <BufferedProtocol.get_buffer>`448 * - ``callback`` :meth:`buffer_updated() <BufferedProtocol.buffer_updated>`451 * - ``callback`` :meth:`eof_received() <BufferedProtocol.eof_received>`
187 and asyncio.BufferedProtocol. Fix loop.start_tls() to work with
265 Implement asyncio.BufferedProtocol (provisional API).
4527 and asyncio.BufferedProtocol. Fix loop.start_tls() to work with
1978 * :class:`asyncio.BufferedProtocol` has graduated to the stable API.
675 * The new *provisional* :class:`~asyncio.BufferedProtocol` class allows