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 happens
Note that all locking is on this
and should remain that way to avoid deadlocks on consumers of this
stream.
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
Method Summary
Methods inherited from class org.jboss.resteasy.spi.AsyncOutputStream
asyncWrite
Methods inherited from class java.io.OutputStream
nullOutputStream
-
Method Details
-
write
- Specified by:
write
in classOutputStream
- Throws:
IOException
-
write
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
write
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
flush
- Specified by:
flush
in interfaceFlushable
- Overrides:
flush
in classOutputStream
- Throws:
IOException
-
close
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classOutputStream
- Throws:
IOException
-
asyncFlush
Description copied from class:AsyncOutputStream
Flushes this async output stream.- Specified by:
asyncFlush
in classAsyncOutputStream
- Returns:
- a
CompletionStage
notified on completion of the flush operation.
-
asyncWrite
Description copied from class:AsyncOutputStream
Writes to this async output stream.- Specified by:
asyncWrite
in 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
CompletionStage
notified on completion of the write operation.
-
onWritePossible
public void onWritePossible()- Specified by:
onWritePossible
in interfacejakarta.servlet.WriteListener
-
onError
- Specified by:
onError
in interfacejakarta.servlet.WriteListener
-