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