35363738394041
private final KVBundleFormat format; public KVChannelOutput(OutputStream out, boolean binary) { this.out = out; this.binary = binary; this.format = new KVBundleFormat(); }
37383940414243
* @param binary */ public KVChannelSource(ChunkSource in, boolean binary) { this.in = in; this.binary = binary; this.format = new KVBundleFormat(); }
34353637383940