Logic invoked when the WebSocket connection is closed.
(self)
| 154 | print("") |
| 155 | |
| 156 | async def on_close(self): |
| 157 | """Logic invoked when the WebSocket connection is closed.""" |
| 158 | print("WebSocket connection closed.") |
| 159 | |
| 160 | async def on_error(self, error): |
| 161 | """Logic invoked when an error occurs in the WebSocket connection. |
nothing calls this directly
no outgoing calls
no test coverage detected