corda/classpath/java/nio/channels/WritableByteChannel.java

9 lines
195 B
Java
Raw Normal View History

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