Pause the receiving end. No data will be passed to the protocol's data_received() method until resume_reading() is called.
(self)
| 53 | raise NotImplementedError |
| 54 | |
| 55 | def pause_reading(self): |
| 56 | """Pause the receiving end. |
| 57 | |
| 58 | No data will be passed to the protocol's data_received() |
| 59 | method until resume_reading() is called. |
| 60 | """ |
| 61 | raise NotImplementedError |
| 62 | |
| 63 | def resume_reading(self): |
| 64 | """Resume the receiving end. |
no outgoing calls