Package jakarta.servlet
Interface WriteListener
- All Superinterfaces:
- EventListener
Receives notification of write events when using non-blocking IO.
- Since:
- Servlet 3.1
- 
Method SummaryModifier and TypeMethodDescriptionvoidInvoked if an error occurs while writing the response.voidInvoked when it it possible to write data without blocking.
- 
Method Details- 
onWritePossibleInvoked when it it possible to write data without blocking. The container will invoke this method the first time for a request as soon as data can be written. Subsequent invocations will only occur if a call toServletOutputStream.isReady()has returned false and it has since become possible to write data.- Throws:
- IOException- if an I/O error occurs while processing this event
 
- 
onErrorInvoked if an error occurs while writing the response.- Parameters:
- throwable- The throwable that represents the error that occurred
 
 
-