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