capnproto-java-rpc/runtime/src/main/java/org/capnproto/BufferedInputStream.java
2014-09-27 10:02:07 -04:00

8 lines
234 B
Java

package org.capnproto;
import java.nio.ByteBuffer;
import java.nio.channels.ReadableByteChannel;
public interface BufferedInputStream extends ReadableByteChannel {
public ByteBuffer getReadBuffer() throws java.io.IOException;
}