public class AsyncBufferedOutputStream
extends java.io.FilterOutputStream
FilterOutputStream that forwards data asynchronously (with a background thread) to the delegate
OutputStream.| Constructor and Description |
|---|
AsyncBufferedOutputStream(java.io.OutputStream out,
java.nio.ByteBuffer buffer,
boolean fair) |
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
void |
flush() |
void |
write(byte[] ba,
int off,
int len) |
void |
write(int b) |
public AsyncBufferedOutputStream(java.io.OutputStream out,
java.nio.ByteBuffer buffer,
boolean fair)
buffer - Typically ByteBuffer.allocate(capacity) for a heap buffer or ByteBuffer.allocateDirect(capacity) for an off-heap bufferfair - See ReentrantLockpublic void write(int b)
throws java.io.IOException
write in class java.io.FilterOutputStreamjava.io.IOException - The background thread got this exceptionpublic void write(byte[] ba,
int off,
int len)
throws java.io.IOException
write in class java.io.FilterOutputStreamjava.io.IOExceptionpublic void flush()
throws java.io.IOException
flush in interface java.io.Flushableflush in class java.io.FilterOutputStreamjava.io.IOExceptionpublic void close()
throws java.io.IOException
close in interface java.io.Closeableclose in interface java.lang.AutoCloseableclose in class java.io.FilterOutputStreamjava.io.IOException