You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
socket.recv_into() accepts a Python writable buffer to receive socket data without any copy. To take advantage of that asyncio have added a Protocol interface for buffered streaming protocols suitable for high performance network applications.
I think h11.Connection could expose its buffer like asyncio.BufferedProtocol does.
The text was updated successfully, but these errors were encountered:
socket.recv_into() accepts a Python writable buffer to receive socket data without any copy. To take advantage of that asyncio have added a Protocol interface for buffered streaming protocols suitable for high performance network applications.
I think
h11.Connection
could expose its buffer likeasyncio.BufferedProtocol
does.The text was updated successfully, but these errors were encountered: