set name for template threads

This commit is contained in:
Sebastian Sdorra
2012-12-09 20:49:56 +01:00
parent ced9abb77f
commit 9207f7e14e

View File

@@ -92,7 +92,8 @@ public class MustacheTemplateEngine implements TemplateEngine
ThreadFactory threadFactory =
new ThreadFactoryBuilder().setNameFormat(THREAD_NAME).build();
factory.setExecutorService(Executors.newCachedThreadPool(threadFactory));
factory.setExecutorService(Executors.
newCachedThreadPool(threadFactory));
}
//~--- get methods ----------------------------------------------------------