Package io.undertow.io
Interface BufferWritableOutputStream
-
- All Known Implementing Classes:
UndertowOutputStream
public interface BufferWritableOutputStreamRepresents an output stream that can write byte buffers directly.- Author:
- Stuart Douglas
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidtransferFrom(FileChannel source)Deprecated.voidwrite(ByteBuffer byteBuffer)voidwrite(ByteBuffer[] buffers)
-
-
-
Method Detail
-
write
void write(ByteBuffer[] buffers) throws IOException
- Throws:
IOException
-
write
void write(ByteBuffer byteBuffer) throws IOException
- Throws:
IOException
-
transferFrom
@Deprecated void transferFrom(FileChannel source) throws IOException
Deprecated.Transfer the remaining content of the input FileChannel (from its current position, to end of file).- Throws:
IOException
-
-