Resume the receiving end. Data received will once again be passed to the protocol's data_received() method.
(self)
| 61 | raise NotImplementedError |
| 62 | |
| 63 | def resume_reading(self): |
| 64 | """Resume the receiving end. |
| 65 | |
| 66 | Data received will once again be passed to the protocol's |
| 67 | data_received() method. |
| 68 | """ |
| 69 | raise NotImplementedError |
| 70 | |
| 71 | |
| 72 | class WriteTransport(BaseTransport): |
no outgoing calls