ThreadFactory.java
1 package org.apache.qpid.thread; 2 3 public interface ThreadFactory 4 { 5 public Thread createThread(Runnable r) throws Exception; 6 public Thread createThread(Runnable r, int priority) throws Exception; 7 }