Uses of Interface
javax.servlet.AsyncContext
-
Packages that use AsyncContext Package Description javax.servlet -
-
Uses of AsyncContext in javax.servlet
Methods in javax.servlet that return AsyncContext Modifier and Type Method Description AsyncContextAsyncEvent. getAsyncContext()Gets the AsyncContext from this AsyncEvent.default AsyncContextServletRequest. getAsyncContext()Gets the AsyncContext that was created or reinitialized by the most recent invocation ofServletRequest.startAsync()orServletRequest.startAsync(ServletRequest,ServletResponse)on this request.AsyncContextServletRequestWrapper. getAsyncContext()Gets the AsyncContext that was created or reinitialized by the most recent invocation ofServletRequestWrapper.startAsync()orServletRequestWrapper.startAsync(ServletRequest,ServletResponse)on the wrapped request.default AsyncContextServletRequest. startAsync()Puts this request into asynchronous mode, and initializes itsAsyncContextwith the original (unwrapped) ServletRequest and ServletResponse objects.default AsyncContextServletRequest. startAsync(ServletRequest servletRequest, ServletResponse servletResponse)Puts this request into asynchronous mode, and initializes itsAsyncContextwith the given request and response objects.AsyncContextServletRequestWrapper. startAsync()The default behavior of this method is to invokeServletRequest.startAsync()on the wrapped request object.AsyncContextServletRequestWrapper. startAsync(ServletRequest servletRequest, ServletResponse servletResponse)The default behavior of this method is to invokeServletRequest.startAsync(ServletRequest, ServletResponse)on the wrapped request object.Constructors in javax.servlet with parameters of type AsyncContext Constructor Description AsyncEvent(AsyncContext context)Constructs an AsyncEvent from the given AsyncContext.AsyncEvent(AsyncContext context, Throwable throwable)Constructs an AsyncEvent from the given AsyncContext and Throwable.AsyncEvent(AsyncContext context, ServletRequest request, ServletResponse response)Constructs an AsyncEvent from the given AsyncContext, ServletRequest, and ServletResponse.AsyncEvent(AsyncContext context, ServletRequest request, ServletResponse response, Throwable throwable)Constructs an AsyncEvent from the given AsyncContext, ServletRequest, ServletResponse, and Throwable.
-