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

com.apptasticsoftware.rssreader.internal.DaemonThreadFactory Maven / Gradle / Ivy

package com.apptasticsoftware.rssreader.internal;

import java.util.concurrent.ThreadFactory;

/**
 * Thread factory that creates daemon threads
 */
public class DaemonThreadFactory implements ThreadFactory {
    private final String name;
    private int counter;

    public DaemonThreadFactory(String name) {
        this.name = name;
    }

    @Override
    public Thread newThread(Runnable r) {
        Thread t = new Thread(r, name + "-" + counter++);
        t.setDaemon(true);
        return t;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy