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

utils.DaemonThreadFactory Maven / Gradle / Ivy

The newest version!
package utils;

import java.util.concurrent.ThreadFactory;

public class DaemonThreadFactory implements ThreadFactory {
	@Override
	public Thread newThread(Runnable paramRunnable) {
		Thread thread = new Thread(paramRunnable);
		thread.setDaemon(true);
		return thread;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy