Ask java to use min priority on the loader threads.

This commit is contained in:
Kevin Ruland 2012-08-24 00:22:04 +00:00
parent 597dabc47e
commit e24b1dda9b

View File

@ -54,6 +54,7 @@ public class ConcurrentComponentPresetDatabaseLoader {
@Override
public Thread newThread(Runnable r) {
Thread t = new Thread(r,"PresetLoaderPool-" + threadCount++);
t.setPriority(Thread.MIN_PRIORITY);
return t;
}