Пример #1
0
 public long write(final ByteBuffer[] srcs) throws IOException {
   return conduit.write(srcs, 0, srcs.length);
 }
Пример #2
0
 public long write(final ByteBuffer[] dsts, final int offs, final int len) throws IOException {
   return conduit.write(dsts, offs, len);
 }
Пример #3
0
 public int write(final ByteBuffer dst) throws IOException {
   return conduit.write(dst);
 }