static Thread maxPriorityThread(O runnable) { Thread thread = newThread(runnable); thread.setPriority(Thread.MAX_PRIORITY); startThread(thread); ret thread; }