blob: 89c4457cb1f6c5ab9bf459a2b35be38a5949a721 [file] [log] [blame]
package org.testng.internal.thread;
/**
* 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();
}