Register a connection with this server.
(self, protocol: WebSocketServerProtocol)
| 710 | self.closed_waiter = server.get_loop().create_future() |
| 711 | |
| 712 | def register(self, protocol: WebSocketServerProtocol) -> None: |
| 713 | """ |
| 714 | Register a connection with this server. |
| 715 | |
| 716 | """ |
| 717 | self.websockets.add(protocol) |
| 718 | |
| 719 | def unregister(self, protocol: WebSocketServerProtocol) -> None: |
| 720 | """ |
no outgoing calls
no test coverage detected