Class HeaderFlushedAsyncOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.jboss.resteasy.spi.AsyncOutputStream
-
- org.jboss.resteasy.plugins.providers.multipart.HeaderFlushedAsyncOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public class HeaderFlushedAsyncOutputStream extends AsyncOutputStream
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Constructor Summary
Constructors Constructor Description HeaderFlushedAsyncOutputStream(javax.ws.rs.core.MultivaluedMap<String,Object> headers, AsyncOutputStream delegate)
-
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()protected CompletionStage<Void>flushHeaders()voidwrite(byte[] bytes)voidwrite(byte[] bytes, int i, int i1)voidwrite(int i)-
Methods inherited from class org.jboss.resteasy.spi.AsyncOutputStream
asyncWrite
-
-
-
-
Constructor Detail
-
HeaderFlushedAsyncOutputStream
public HeaderFlushedAsyncOutputStream(javax.ws.rs.core.MultivaluedMap<String,Object> headers, AsyncOutputStream delegate)
-
-
Method Detail
-
flushHeaders
protected CompletionStage<Void> flushHeaders()
-
write
public void write(int i) throws IOException- Specified by:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] bytes) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] bytes, int i, int i1) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
flush
public void flush() throws IOException- Specified by:
flushin interfaceFlushable- Overrides:
flushin classOutputStream- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein 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.
-
-