asyncio.Protocol.data_received()

Protocol.data_received(data)

Called when some data is received. data is a non-empty bytes object containing the incoming data.

Note

Whether the data is buffered, chunked or reassembled depends on the transport. In general, you shouldn’t rely on specific semantics and instead make your parsing generic and flexible enough. However, data is always received in the correct order.

doc_python
2016-10-07 17:26:54
Comments
Leave a Comment

Please login to continue.