(HttpExchange x, Service service)
| 36 | } |
| 37 | |
| 38 | public Websocket(HttpExchange x, Service service) { |
| 39 | super(service); |
| 40 | this.x = x; |
| 41 | this.remote = x.channel().remoteAddress(); |
| 42 | this.timeThrottle = TimeThrottle.create(getService().getSocketOptions()); |
| 43 | } |
| 44 | |
| 45 | @Override |
| 46 | public Type getType() { |
nothing calls this directly
no test coverage detected