Return True if the transport is receiving.
(self)
| 49 | __slots__ = () |
| 50 | |
| 51 | def is_reading(self): |
| 52 | """Return True if the transport is receiving.""" |
| 53 | raise NotImplementedError |
| 54 | |
| 55 | def pause_reading(self): |
| 56 | """Pause the receiving end. |
no outgoing calls