blob: c488c2d3f265e84875317a6b055edd448b20b8ed [file] [log] [blame]
package org.testng.internal.thread;
import java.util.List;
/**
* Reduced interface to mimic ThreadFactory.
*
* @author <a href='mailto:the_mindstorm@evolva.ro'>Alexandru Popescu</a>
* @version $Revision$
*/
public interface IThreadFactory {
Thread newThread(Runnable run);
Object getThreadFactory();
List<Thread> getThreads();
}