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