@Override public WebSocket write(byte[] b, int offset, int length) throws IOException { blockingConnection.write(b, offset, length); return this; }
@Override public WebSocket write(String s) throws IOException { blockingConnection.write(s); return this; }