Uses of Interface
jakarta.servlet.AsyncListener
-
Packages that use AsyncListener Package Description jakarta.servlet The jakarta.servlet package contains a number of classes and interfaces that describe and define the contracts between a servlet class and the runtime environment provided for an instance of such a class by a conforming servlet container. -
-
Uses of AsyncListener in jakarta.servlet
Methods in jakarta.servlet with type parameters of type AsyncListener Modifier and Type Method Description <T extends AsyncListener>
TAsyncContext. createListener(Class<T> clazz)
Instantiates the givenAsyncListener
class.Methods in jakarta.servlet with parameters of type AsyncListener Modifier and Type Method Description void
AsyncContext. addListener(AsyncListener listener)
Registers the givenAsyncListener
with the most recent asynchronous cycle that was started by a call to one of theServletRequest.startAsync()
methods.void
AsyncContext. addListener(AsyncListener listener, ServletRequest servletRequest, ServletResponse servletResponse)
Registers the givenAsyncListener
with the most recent asynchronous cycle that was started by a call to one of theServletRequest.startAsync()
methods.
-