Signal that the client transport has gone away.
(self)
| 196 | self._wake_waiter() |
| 197 | |
| 198 | def signal_disconnect(self): |
| 199 | """Signal that the client transport has gone away.""" |
| 200 | self._closed = True |
| 201 | self._wake_waiter() |
| 202 | |
| 203 | @property |
| 204 | def _disconnected(self): |