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
@Deprecated(forRemoval=true,
since="6.2.13.Final")
public class ChunkOutputStream
extends AsyncOutputStream
Deprecated, for removal: This API element is subject to removal in a future version.
use new dependencies
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
Modifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Flushes this async output stream.asyncWrite(byte[] bytes, int offset, int length) Deprecated, for removal: This API element is subject to removal in a future version.Writes to this async output stream.voidclose()Deprecated, for removal: This API element is subject to removal in a future version.voidflush()Deprecated, for removal: This API element is subject to removal in a future version.voidreset()Deprecated, for removal: This API element is subject to removal in a future version.voidwrite(byte[] b, int off, int len) Deprecated, for removal: This API element is subject to removal in a future version.voidwrite(int b) Deprecated, for removal: This API element is subject to removal in a future version.Methods inherited from class org.jboss.resteasy.spi.AsyncOutputStream
asyncWriteMethods inherited from class java.io.OutputStream
nullOutputStream, write
-
Method Details
-
write
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
writein classOutputStream- Throws:
IOException
-
reset
public void reset()Deprecated, for removal: This API element is subject to removal in a future version. -
close
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classOutputStream- Throws:
IOException
-
write
Deprecated, for removal: This API element is subject to removal in a future version.- Overrides:
writein classOutputStream- Throws:
IOException
-
flush
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
flushin interfaceFlushable- Overrides:
flushin classOutputStream- Throws:
IOException
-
asyncFlush
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from class:AsyncOutputStreamFlushes this async output stream.- Specified by:
asyncFlushin classAsyncOutputStream- Returns:
- a
CompletionStagenotified on completion of the flush operation.
-
asyncWrite
Deprecated, for removal: This API element is subject to removal in a future version.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.
-