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
|
|
|
}
|