if (dispatcher instanceof AsynchronousDispatcher)
{
AsynchronousDispatcher asyncDispatcher = (AsynchronousDispatcher) dispatcher;
if (asyncDispatcher.isAsynchrnousRequest(request))
{
asyncDispatcher.invoke(request, response);
return null;
}
}
return createModelAndView(requestWrapper, response);
}