def ping(self):
"""
Disconnected
"""
self.log.debug('Sending ping')
try:
return (yield from self._connection.ping())
except websockets.ConnectionClosed as exc:
self.log.debug('Connection closed while pinging')
raise Disconnected(exc.code) from exc
评论列表
文章目录