Resume the receiving end. Data received will once again be passed to the protocol's data_received() method.
(self)
| 136 | self._ssl_protocol._pause_reading() |
| 137 | |
| 138 | def resume_reading(self): |
| 139 | """Resume the receiving end. |
| 140 | |
| 141 | Data received will once again be passed to the protocol's |
| 142 | data_received() method. |
| 143 | """ |
| 144 | self._ssl_protocol._resume_reading() |
| 145 | |
| 146 | def set_write_buffer_limits(self, high=None, low=None): |
| 147 | """Set the high- and low-water limits for write flow control. |
no test coverage detected