Close any open sessions and close the connection if still open.
(self)
| 274 | return False |
| 275 | |
| 276 | def close_connection(self): |
| 277 | """Close any open sessions and close the connection if still open.""" |
| 278 | raise NotImplementedError() |
| 279 | |
| 280 | def _close_transport(self): |
| 281 | """Closes transport if not closed and set self.connected to False. This is the last |
no outgoing calls
no test coverage detected