Home | History | Annotate | Download | only in jsr166

Lines Matching defs:threadFactory

29 import java.util.concurrent.ThreadFactory;
482 final ThreadFactory threadFactory = new SimpleThreadFactory();
484 new ScheduledThreadPoolExecutor(1, threadFactory);
486 assertSame(threadFactory, p.getThreadFactory());
494 ThreadFactory threadFactory = new SimpleThreadFactory();
497 p.setThreadFactory(threadFactory);
498 assertSame(threadFactory, p.getThreadFactory());