staticQueue = new LinkedBlockingQueue<Runnable>();
postParseExecutor = new ThreadPoolExecutor(threads, threads,
0, TimeUnit.SECONDS, staticQueue,
new NamedThreadFactory());
staticQueueAuditor = new BlockingQueueDispatchAuditor(staticQueue);
staticQueueAuditor.setTimeout(queueTimeout);
staticQueueAuditor.start(2000);
}
}