Searched refs:BufferedProtocol (Results 1 – 13 of 13) sorted by relevance
105 class BufferedProtocol(BaseProtocol): class
461 isinstance(app_protocol, protocols.BufferedProtocol)
235 if isinstance(self._protocol, protocols.BufferedProtocol):
737 if isinstance(protocol, protocols.BufferedProtocol):
60 :class:`Protocol`, :class:`BufferedProtocol`,456 .. class:: BufferedProtocol(BaseProtocol)590 ``BufferedProtocol`` implementations allow explicit manual allocation597 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 number627 and, if called, :meth:`~BufferedProtocol.get_buffer` and628 :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>`
7 class ReceiveStuffProto(asyncio.BufferedProtocol):
168 class Proto(asyncio.BufferedProtocol):299 class ClientProtoFirst(asyncio.BufferedProtocol):
482 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)
1287 self.protocol = test_utils.make_test_protocol(asyncio.BufferedProtocol)1346 buf_proto = test_utils.make_test_protocol(asyncio.BufferedProtocol)
187 and asyncio.BufferedProtocol. Fix loop.start_tls() to work with
266 Implement asyncio.BufferedProtocol (provisional API).
670 * The new *provisional* :class:`~asyncio.BufferedProtocol` class allows