All Downloads are FREE. Search and download functionalities are using the official Maven repository.

smile.util.SimpleDeamonThreadFactory Maven / Gradle / Ivy

The newest version!
package smile.util; 


import java.util.concurrent.ThreadFactory;

class SimpleDeamonThreadFactory implements ThreadFactory {
  public Thread newThread(Runnable r) {
    Thread t = new Thread(r);
    t.setDaemon(true);
    return t;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy