125126127128129130131
* writes the resulting bytes to the given channel. */ public static Writer newWriter(WritableByteChannel ch, CharsetEncoder enc, int minBufferCap) { return new ChannelWriter(ch, enc, minBufferCap); }