Class HttpServletResponseWrapper.DeferredOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.jboss.resteasy.spi.AsyncOutputStream
-
- org.jboss.resteasy.plugins.server.servlet.HttpServletResponseWrapper.DeferredOutputStream
-
- All Implemented Interfaces:
jakarta.servlet.WriteListener,Closeable,Flushable,AutoCloseable,EventListener
- Enclosing class:
- HttpServletResponseWrapper
protected class HttpServletResponseWrapper.DeferredOutputStream extends AsyncOutputStream implements jakarta.servlet.WriteListener
RESTEASY-684 wants to defer access to outputstream until a write happensNote that all locking is on
thisand should remain that way to avoid deadlocks on consumers of this stream.
-
-
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()voidflush()voidonError(Throwable t)voidonWritePossible()voidwrite(byte[] bytes)voidwrite(byte[] bytes, int i, int i1)voidwrite(int i)-
Methods inherited from class org.jboss.resteasy.spi.AsyncOutputStream
asyncWrite
-
Methods inherited from class java.io.OutputStream
nullOutputStream
-
-
-
-
Method Detail
-
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
-
onWritePossible
public void onWritePossible()
- Specified by:
onWritePossiblein interfacejakarta.servlet.WriteListener
-
onError
public void onError(Throwable t)
- Specified by:
onErrorin interfacejakarta.servlet.WriteListener
-
-