corda/classpath/java/nio/channels/ReadableByteChannel.java

9 lines
194 B
Java
Raw Normal View History

package java.nio.channels;
import java.io.IOException;
import java.nio.ByteBuffer;
public interface ReadableByteChannel extends Channel {
public int read(ByteBuffer b) throws IOException;
}