9 lines
261 B
Java
9 lines
261 B
Java
package org.capnproto;
|
|
|
|
import java.nio.ByteBuffer;
|
|
import java.nio.channels.WritableByteChannel;
|
|
|
|
public interface BufferedOutputStream extends WritableByteChannel {
|
|
public ByteBuffer getWriteBuffer();
|
|
public void flush() throws java.io.IOException;
|
|
}
|