Class CoyoteOutputStream
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
- Author:
- Costin Manolache, Remy Maucherat
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected Object
clone()
Prevent cloning the facade.void
close()
void
flush()
Will send the buffer to the client.boolean
isReady()
Returnstrue
if it is allowable to call any method that may write data (e.g.void
setWriteListener
(WriteListener listener) Sets theWriteListener
for thisServletOutputStream
and thereby switches to non-blocking IO.void
write
(byte[] b) void
write
(byte[] b, int off, int len) void
write
(int i) void
write
(ByteBuffer from) Writes from the given buffer to the output stream.Methods inherited from class jakarta.servlet.ServletOutputStream
print, print, print, print, print, print, print, println, println, println, println, println, println, println, println
Methods inherited from class java.io.OutputStream
nullOutputStream
-
Field Details
-
sm
-
ob
-
-
Constructor Details
-
CoyoteOutputStream
-
-
Method Details
-
clone
Prevent cloning the facade.- Overrides:
clone
in classObject
- Throws:
CloneNotSupportedException
-
write
- Specified by:
write
in classOutputStream
- Throws:
IOException
-
write
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
write
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
write
Description copied from class:jakarta.servlet.ServletOutputStream
Writes from the given buffer to the output stream.If the output steam is in non-blocking mode, before each invocation of this method
ServletOutputStream.isReady()
must be called and must returntrue
or theWriteListener.onWritePossible()
call back must indicate that data may be written else anIllegalStateException
must be thrown.Otherwise, if this method is called when
buffer
has no data remaining, the method returns immediately andbuffer
is unchanged.If the output stream is in non-blocking mode, neither the position, limit nor content of the buffer passed to this method may be modified until a subsequent call to
ServletOutputStream.isReady()
returns true or theWriteListener.onWritePossible()
call back indicates data may be written again. At this point the buffer's limit will be unchanged from the value when passed to this method and the position will be the same as the limit.If the output stream is in blocking mode and
buffer
has space remaining, this method blocks until all the remaining data in the buffer has been written. When the method returns, and if data has been written, the buffer's limit will be unchanged from the value when passed to this method and the position will be the same as the limit.Subclasses are strongly encouraged to override this method and provide a more efficient implementation.
- Overrides:
write
in classServletOutputStream
- Parameters:
from
- The buffer from which the data is written.- Throws:
IOException
- If the output stream has been closed or if some other I/O error occurs.
-
flush
Will send the buffer to the client.- Specified by:
flush
in interfaceFlushable
- Overrides:
flush
in classOutputStream
- Throws:
IOException
-
close
Description copied from class:jakarta.servlet.ServletOutputStream
If this method is called when the output stream is in non-blocking mode, it will immediately return with the stream effectively closed, even if the stream contains buffered data that is yet to be written to client. The container will write this data out in the background. If this process fails the
WriteListener.onError(Throwable)
method will be invoked as normal.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classServletOutputStream
- Throws:
IOException
-
isReady
public boolean isReady()Description copied from class:jakarta.servlet.ServletOutputStream
Returnstrue
if it is allowable to call any method that may write data (e.g.write()
,print()
orflush
). In blocking mode, this method will always returntrue
, but a subsequent call to a method that writes data may block. In non-blocking mode this method may returnfalse
, in which case it is illegal to call a method that writes data and anIllegalStateException
MUST be thrown. WhenWriteListener.onWritePossible()
is called, a call to this method that returnedtrue
is implicit.If this method returns
false
and aWriteListener
has been set viaServletOutputStream.setWriteListener(WriteListener)
, then container will subsequently invokeWriteListener.onWritePossible()
once a write operation becomes possible without blocking. Other than the initial call,WriteListener.onWritePossible()
will only be called if and only if this method is called and returns false.- Specified by:
isReady
in classServletOutputStream
- Returns:
true
if data can be written without blocking, otherwise returnsfalse
.
-
setWriteListener
Description copied from class:jakarta.servlet.ServletOutputStream
Sets theWriteListener
for thisServletOutputStream
and thereby switches to non-blocking IO. It is only valid to switch to non-blocking IO within async processing or HTTP upgrade processing.- Specified by:
setWriteListener
in classServletOutputStream
- Parameters:
listener
- The non-blocking IO write listener
-