Package org.jboss.resteasy.util
Class CommitHeaderAsyncOutputStream
java.lang.Object
java.io.OutputStream
org.jboss.resteasy.spi.AsyncOutputStream
org.jboss.resteasy.util.CommitHeaderAsyncOutputStream
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
- Direct Known Subclasses:
GZIPEncodingInterceptor.CommittedGZIPOutputStream
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected AsyncOutputStreamprotected CommitHeaderOutputStream.CommitCallbackprotected boolean -
Constructor Summary
ConstructorsConstructorDescriptionCommitHeaderAsyncOutputStream(AsyncOutputStream delegate, CommitHeaderOutputStream.CommitCallback headers) -
Method Summary
Modifier and TypeMethodDescriptionFlushes this async output stream.asyncWrite(byte[] bytes, int offset, int length) Writes to this async output stream.voidclose()voidcommit()voidflush()voidsetDelegate(AsyncOutputStream delegate) voidvoidwrite(byte[] bytes) voidwrite(byte[] bytes, int i, int i1) voidwrite(int i) Methods inherited from class org.jboss.resteasy.spi.AsyncOutputStream
asyncWriteMethods inherited from class java.io.OutputStream
nullOutputStream
-
Field Details
-
delegate
-
isHeadersCommitted
protected boolean isHeadersCommitted -
headers
-
-
Constructor Details
-
CommitHeaderAsyncOutputStream
public CommitHeaderAsyncOutputStream(AsyncOutputStream delegate, CommitHeaderOutputStream.CommitCallback headers) -
CommitHeaderAsyncOutputStream
public CommitHeaderAsyncOutputStream()
-
-
Method Details
-
getDelegate
-
setDelegate
-
setHeaders
-
commit
public void commit() -
write
- Specified by:
writein classOutputStream- Throws:
IOException
-
write
- Overrides:
writein classOutputStream- Throws:
IOException
-
write
- Overrides:
writein classOutputStream- Throws:
IOException
-
flush
- Specified by:
flushin interfaceFlushable- Overrides:
flushin classOutputStream- Throws:
IOException
-
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classOutputStream- Throws:
IOException
-
asyncFlush
Description copied from class:AsyncOutputStreamFlushes this async output stream.- Specified by:
asyncFlushin classAsyncOutputStream- Returns:
- a
CompletionStagenotified on completion of the flush operation.
-
asyncWrite
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.
-