Пример #1
0
 public void onData(TCPClientLoop l, SocketChannel sc, ByteBuffer buf) {
   l.write(sc, this, buf);
   ++count;
   if (Speed.NUM == count) {
     p("here");
     l.shutdownOutput(sc, this);
     l.close(sc, this);
     l.st("");
     l.stopLoop();
   }
 }