8 lines
234 B
Java
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;
|
|
}
|