workers.submit(new Callable<NginxClojureRT.WorkerResponseContext>() {
@Override
public WorkerResponseContext call() throws Exception {
NginxResponse resp = handleRequest(req);
//let output chain built before entering the main thread
return new WorkerResponseContext(resp, req);
}
});
return NGX_DONE;
}