Uses of Interface
jakarta.servlet.AsyncContext
-
Packages that use AsyncContext 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 AsyncContext in jakarta.servlet
Methods in jakarta.servlet that return AsyncContext Modifier and Type Method Description AsyncContextAsyncEvent. getAsyncContext()Obtain the asynchronous context associated with the event.AsyncContextServletRequest. getAsyncContext()Get the current AsyncContext.AsyncContextServletRequestWrapper. getAsyncContext()The default behavior of this method is to return getAsyncContext() on the wrapped request object.AsyncContextServletRequest. startAsync()AsyncContextServletRequest. startAsync(ServletRequest servletRequest, ServletResponse servletResponse)AsyncContextServletRequestWrapper. startAsync()The default behavior of this method is to return startAsync() on the wrapped request object.AsyncContextServletRequestWrapper. startAsync(ServletRequest servletRequest, ServletResponse servletResponse)The default behavior of this method is to return startAsync(Runnable) on the wrapped request object.Constructors in jakarta.servlet with parameters of type AsyncContext Constructor Description AsyncEvent(AsyncContext context)Creates an instance using the provide parameters.AsyncEvent(AsyncContext context, ServletRequest request, ServletResponse response)Creates an instance using the provide parameters.AsyncEvent(AsyncContext context, ServletRequest request, ServletResponse response, java.lang.Throwable throwable)Creates an instance using the provide parameters.AsyncEvent(AsyncContext context, java.lang.Throwable throwable)Creates an instance using the provide parameters.
-