| Package | Description |
|---|---|
| jakarta.servlet |
| Modifier and Type | Method and Description |
|---|---|
void |
AsyncListener.onComplete(AsyncEvent event)
This event is fired after the call to
AsyncContext.complete()
has been processed by the container. |
void |
AsyncListener.onError(AsyncEvent event)
This event is fired if an error occurs during an asynchronous operation
but before the container takes any action as a result of the error.
|
void |
AsyncListener.onStartAsync(AsyncEvent event)
This event is fired if new call is made to
ServletRequest.startAsync() after the completion of the
AsyncContext to which this listener was added. |
void |
AsyncListener.onTimeout(AsyncEvent event)
This event is fired if an asynchronous operation times out but before
the container takes any action as a result of the timeout.
|
Copyright © 2014–2021. All rights reserved.