mirror of
https://github.com/corda/corda.git
synced 2025-01-09 14:33:30 +00:00
98269286e5
and server socket channels are implemented. This version works but only when libnative is linked with g++ (because of C++ object creation code that fails without this linking)
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;
|
|
}
|