Called when some data is received. The argument is a bytes object.
(self, data)
| 92 | __slots__ = () |
| 93 | |
| 94 | def data_received(self, data): |
| 95 | """Called when some data is received. |
| 96 | |
| 97 | The argument is a bytes object. |
| 98 | """ |
| 99 | |
| 100 | def eof_received(self): |
| 101 | """Called when the other end calls write_eof() or equivalent. |
no outgoing calls
no test coverage detected