Class ChunkOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.jboss.resteasy.spi.AsyncOutputStream
-
- org.jboss.resteasy.plugins.server.netty.ChunkOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public class ChunkOutputStream extends AsyncOutputStream
Class to help application that are built to write to an OutputStream to chunk the contentDefaultHttpResponse 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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CompletionStage<Void>asyncFlush()Flushes this async output stream.CompletionStage<Void>asyncWrite(byte[] bytes, int offset, int length)Writes to this async output stream.voidclose()voidflush()voidreset()voidwrite(byte[] b, int off, int len)voidwrite(int b)-
Methods inherited from class org.jboss.resteasy.spi.AsyncOutputStream
asyncWrite
-
Methods inherited from class java.io.OutputStream
write
-
-
-
-
Method Detail
-
write
public void write(int b) throws IOException- Specified by:
writein classOutputStream- Throws:
IOException
-
reset
public void reset()
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classOutputStream- Throws:
IOException
-
write
public void write(byte[] b, int off, int len) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
flush
public void flush() throws IOException- Specified by:
flushin interfaceFlushable- Overrides:
flushin classOutputStream- Throws:
IOException
-
asyncFlush
public CompletionStage<Void> asyncFlush()
Description copied from class:AsyncOutputStreamFlushes this async output stream.- Specified by:
asyncFlushin classAsyncOutputStream- Returns:
- a
CompletionStagenotified on completion of the flush operation.
-
asyncWrite
public CompletionStage<Void> asyncWrite(byte[] bytes, int offset, int length)
Description copied from class:AsyncOutputStreamWrites to this async output stream.- Specified by:
asyncWritein 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
CompletionStagenotified on completion of the write operation.
-
-