public class AsyncContextImpl extends Object implements AsyncContext, AsyncContextCallback
Modifier and Type | Field and Description |
---|---|
protected static StringManager |
sm |
ASYNC_CONTEXT_PATH, ASYNC_PATH_INFO, ASYNC_QUERY_STRING, ASYNC_REQUEST_URI, ASYNC_SERVLET_PATH
Constructor and Description |
---|
AsyncContextImpl(Request request) |
Modifier and Type | Method and Description |
---|---|
void |
addListener(AsyncListener listener) |
void |
addListener(AsyncListener listener,
ServletRequest servletRequest,
ServletResponse servletResponse) |
void |
complete() |
<T extends AsyncListener> |
createListener(Class<T> clazz) |
void |
dispatch() |
void |
dispatch(ServletContext servletContext,
String path) |
void |
dispatch(String path) |
protected void |
doInternalDispatch() |
void |
fireOnComplete() |
ServletRequest |
getRequest() |
ServletResponse |
getResponse() |
long |
getTimeout()
Get the current timeout.
|
boolean |
hasOriginalRequestAndResponse() |
boolean |
isAvailable()
Reports if the web application associated with this async request is
available.
|
boolean |
isStarted() |
void |
recycle() |
void |
setErrorState(Throwable t,
boolean fireOnError) |
void |
setStarted(Context context,
ServletRequest request,
ServletResponse response,
boolean originalRequestResponse) |
void |
setTimeout(long timeout)
Set the timeout.
|
void |
start(Runnable run) |
boolean |
timeout() |
protected static final StringManager sm
public AsyncContextImpl(Request request)
public void complete()
complete
in interface AsyncContext
public void fireOnComplete()
fireOnComplete
in interface AsyncContextCallback
public boolean timeout()
public void dispatch()
dispatch
in interface AsyncContext
public void dispatch(String path)
dispatch
in interface AsyncContext
path
- The path to which the request/response should be dispatched
relative to the ServletContext
from which this async
request was started.public void dispatch(ServletContext servletContext, String path)
dispatch
in interface AsyncContext
servletContext
- The ServletContext
to which the request/response
should be dispatched.path
- The path to which the request/response should be dispatched
relative to the specified ServletContext
.public ServletRequest getRequest()
getRequest
in interface AsyncContext
public ServletResponse getResponse()
getResponse
in interface AsyncContext
public void start(Runnable run)
start
in interface AsyncContext
public void addListener(AsyncListener listener)
addListener
in interface AsyncContext
public void addListener(AsyncListener listener, ServletRequest servletRequest, ServletResponse servletResponse)
addListener
in interface AsyncContext
public <T extends AsyncListener> T createListener(Class<T> clazz) throws ServletException
createListener
in interface AsyncContext
ServletException
public void recycle()
public boolean isStarted()
public void setStarted(Context context, ServletRequest request, ServletResponse response, boolean originalRequestResponse)
public boolean hasOriginalRequestAndResponse()
hasOriginalRequestAndResponse
in interface AsyncContext
protected void doInternalDispatch() throws ServletException, IOException
ServletException
IOException
public long getTimeout()
AsyncContext
getTimeout
in interface AsyncContext
public void setTimeout(long timeout)
AsyncContext
setTimeout
in interface AsyncContext
timeout
- The timeout in milliseconds. 0 or less indicates no
timeout.public boolean isAvailable()
AsyncContextCallback
isAvailable
in interface AsyncContextCallback
true
if the associated web application is available,
otherwise false
public void setErrorState(Throwable t, boolean fireOnError)
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.