mirror of
https://github.com/corda/corda.git
synced 2025-01-09 22:42:40 +00:00
9 lines
195 B
Java
9 lines
195 B
Java
|
package java.nio.channels;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
import java.nio.ByteBuffer;
|
||
|
|
||
|
public interface WritableByteChannel extends Channel {
|
||
|
public int write(ByteBuffer b) throws IOException;
|
||
|
}
|