Pause the receiving end. No data will be passed to the protocol's data_received() method until resume_reading() is called.
(self)
| 128 | return not self._ssl_protocol._app_reading_paused |
| 129 | |
| 130 | def pause_reading(self): |
| 131 | """Pause the receiving end. |
| 132 | |
| 133 | No data will be passed to the protocol's data_received() |
| 134 | method until resume_reading() is called. |
| 135 | """ |
| 136 | self._ssl_protocol._pause_reading() |
| 137 | |
| 138 | def resume_reading(self): |
| 139 | """Resume the receiving end. |
no test coverage detected