1 7 8 package java.nio.channels; 9 10 import java.io.IOException ; 11 import java.nio.ByteBuffer ; 12 13 14 31 32 public interface ScatteringByteChannel 33 extends ReadableByteChannel  34 { 35 36 106 public long read(ByteBuffer [] dsts, int offset, int length) 107 throws IOException ; 108 109 143 public long read(ByteBuffer [] dsts) throws IOException ; 144 145 } 146 | Popular Tags |