Exemplo n.º 1
0
 public long write(final ByteBuffer[] srcs) throws IOException {
   return conduit.write(srcs, 0, srcs.length);
 }
Exemplo n.º 2
0
 public long write(final ByteBuffer[] dsts, final int offs, final int len) throws IOException {
   return conduit.write(dsts, offs, len);
 }
Exemplo n.º 3
0
 public int write(final ByteBuffer dst) throws IOException {
   return conduit.write(dst);
 }