Lines Matching full:disconnect
253 This coroutine initiates the actual disconnect process and calls
259 await self.disconnect()
260 logging.debug('Disconnect finished. Exiting app')
263 async def disconnect(self) -> None: member in App
265 Overrides the disconnect method to handle the errors locally.
268 await super().disconnect()
270 logging.info('disconnect: %s', str(err))
273 logging.info('disconnect: %s', str(err))
275 logging.error('disconnect: Unhandled exception %s', str(err))
334 A disconnect is issued when the current state is DISCONNECTING.
347 await self.disconnect()
350 # disconnect(), hence the cast.