mirror of
https://github.com/corda/corda.git
synced 2025-01-10 06:52:44 +00:00
9 lines
194 B
Java
9 lines
194 B
Java
|
package java.nio.channels;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
import java.nio.ByteBuffer;
|
||
|
|
||
|
public interface ReadableByteChannel extends Channel {
|
||
|
public int read(ByteBuffer b) throws IOException;
|
||
|
}
|