Coroutine coroutine = new Coroutine(coroutineRunner);
coroutine.resume();
if (coroutine.getState() == Coroutine.State.FINISHED) {
return coroutineRunner.response;
}else {
return new NginxJavaResponse(req, Constants.ASYNC_TAG);
}
}else {
return req.handler().process(req);
}
}catch(Throwable e){