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
public class CommitHeaderAsyncOutputStream extends AsyncOutputStream
-
-
Field Summary
Fields Modifier and Type Field Description protected AsyncOutputStreamdelegateprotected CommitHeaderOutputStream.CommitCallbackheadersprotected booleanisHeadersCommitted
-
Constructor Summary
Constructors Constructor Description CommitHeaderAsyncOutputStream()CommitHeaderAsyncOutputStream(AsyncOutputStream delegate, CommitHeaderOutputStream.CommitCallback headers)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CompletionStage<Void>asyncFlush()CompletionStage<Void>asyncWrite(byte[] bytes, int offset, int length)voidclose()voidcommit()voidflush()AsyncOutputStreamgetDelegate()voidsetDelegate(AsyncOutputStream delegate)voidsetHeaders(CommitHeaderOutputStream.CommitCallback headers)voidwrite(byte[] bytes)voidwrite(byte[] bytes, int i, int i1)voidwrite(int i)-
Methods inherited from class org.jboss.resteasy.spi.AsyncOutputStream
asyncWrite
-
-
-
-
Field Detail
-
delegate
protected AsyncOutputStream delegate
-
isHeadersCommitted
protected boolean isHeadersCommitted
-
headers
protected CommitHeaderOutputStream.CommitCallback headers
-
-
Constructor Detail
-
CommitHeaderAsyncOutputStream
public CommitHeaderAsyncOutputStream(AsyncOutputStream delegate, CommitHeaderOutputStream.CommitCallback headers)
-
CommitHeaderAsyncOutputStream
public CommitHeaderAsyncOutputStream()
-
-
Method Detail
-
getDelegate
public AsyncOutputStream getDelegate()
-
setDelegate
public void setDelegate(AsyncOutputStream delegate)
-
setHeaders
public void setHeaders(CommitHeaderOutputStream.CommitCallback headers)
-
commit
public void commit()
-
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()
- Specified by:
asyncFlushin classAsyncOutputStream
-
asyncWrite
public CompletionStage<Void> asyncWrite(byte[] bytes, int offset, int length)
- Specified by:
asyncWritein classAsyncOutputStream
-
-