public void unknown(int sequenceNo, String messageType, String message) {
unknown(sequenceNo, messageType);
}
};
WebSocket websocket = openWebSocket((InetSocketAddress) serverAddress);
protoChannel = new WebSocketClientChannel(websocket, callback, threadPool);
protoChannel.expectMessage(Rpc.RpcFinished.getDefaultInstance());
protoChannel.startAsyncRead();
LOG.fine("Opened a new WebSocketClientRpcChannel to " + serverAddress);
}