Execute the Comet AsyncFilter
by delegating the work to the
CometEngine
. At this stage, the request has already
been interrupted.
AsyncProcessorTask apt = (AsyncProcessorTask)asyncExecutor.getAsyncTask();
CometEngine cometEngine = CometEngine.getEngine();
try{
if (!cometEngine.handle(apt)) {
return true;
}
} catch (IOException ex){
logger.log(Level.SEVERE,"CometAsyncFilter",ex);
}
return false;