public long transferFrom(
     final StreamSourceChannel source, final long count, final ByteBuffer throughBuffer)
     throws IOException {
   return conduit.transferFrom(source, count, throughBuffer);
 }
 public long transferFrom(final FileChannel src, final long position, final long count)
     throws IOException {
   return conduit.transferFrom(src, position, count);
 }