// runnable = Runnable or String (method name) static Thread lowerPriorityThread(O runnable) { Thread thread = newThread(runnable); thread.setPriority(Thread.NORM_PRIORITY-1); startThread(thread); ret thread; }