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