Class ChunkOutputStream
java.lang.Object
java.io.OutputStream
org.jboss.resteasy.spi.AsyncOutputStream
org.jboss.resteasy.plugins.server.vertx.ChunkOutputStream
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
Class to help application that are built to write to an
OutputStream to chunk the content
DefaultHttpResponse response = new DefaultHttpResponse(HTTP_1_1, OK);
HttpHeaders.setTransferEncodingChunked(response);
response.headers().set(CONTENT_TYPE, "application/octet-stream");
//other headers
ctx.write(response);
// code of the application that use the ChunkOutputStream
// Don't forget to close the ChunkOutputStream after use!
ctx.writeAndFlush(LastHttpContent.EMPTY_LAST_CONTENT).addListener(ChannelFutureListener.CLOSE);
- Author:
- tbussier
-
Method Summary
Methods inherited from class org.jboss.resteasy.spi.AsyncOutputStream
asyncWrite
Methods inherited from class java.io.OutputStream
nullOutputStream, write
-
Method Details
-
write
- Specified by:
write
in classOutputStream
- Throws:
IOException
-
reset
public void reset() -
close
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classOutputStream
- Throws:
IOException
-
write
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
flush
- Specified by:
flush
in interfaceFlushable
- Overrides:
flush
in classOutputStream
- Throws:
IOException
-
asyncFlush
Description copied from class:AsyncOutputStream
Flushes this async output stream.- Specified by:
asyncFlush
in classAsyncOutputStream
- Returns:
- a
CompletionStage
notified on completion of the flush operation.
-
asyncWrite
Description copied from class:AsyncOutputStream
Writes to this async output stream.- Specified by:
asyncWrite
in classAsyncOutputStream
- Parameters:
bytes
- the bytes to writeoffset
- the offset from which to start writing in the given byte array.length
- the number of bytes to write from the given byte array- Returns:
- a
CompletionStage
notified on completion of the write operation.
-