capnproto-java-rpc/runtime/src/main/java/org/capnproto/BufferedInputStream.java

9 lines
234 B
Java
Raw Normal View History

2014-09-03 21:50:23 +00:00
package org.capnproto;
import java.nio.ByteBuffer;
import java.nio.channels.ReadableByteChannel;
public interface BufferedInputStream extends ReadableByteChannel {
2014-09-27 14:02:07 +00:00
public ByteBuffer getReadBuffer() throws java.io.IOException;
2014-09-03 21:50:23 +00:00
}