public abstract class WebSocket<A>
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
WebSocket.In<A>
A WebSocket in.
|
static interface |
WebSocket.Out<A>
A WebSocket out.
|
Constructor and Description |
---|
WebSocket() |
Modifier and Type | Method and Description |
---|---|
abstract void |
onReady(WebSocket.In<A> in,
WebSocket.Out<A> out)
Called when the WebSocket is ready
|
public abstract void onReady(WebSocket.In<A> in, WebSocket.Out<A> out)
in
- The Socket in.out
- The Socket out.