14 lines
344 B
Java
14 lines
344 B
Java
//: com/mindviewinc/util/DaemonThreadFactory.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
package com.mindviewinc.util;
|
|
import java.util.concurrent.*;
|
|
|
|
public class DaemonThreadFactory implements ThreadFactory {
|
|
@Override
|
|
public Thread newThread(Runnable r) {
|
|
Thread t = new Thread(r);
|
|
t.setDaemon(true);
|
|
return t;
|
|
}
|
|
} ///:~
|