NamedThreads.java

53 lines | 1.25 kB Blame History Raw Download
package br.ufrgs.inf.prosoft.tigris.monitoring.util.threads;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.concurrent.ThreadFactory;

/**
 * The type Named threads.
 */
public class NamedThreads implements ThreadFactory {

    /**
     * Name of the thread.
     */
    private final transient String name;
    /**
     * Purpose of these threads.
     */
    private final transient String purpose;
    /**
     * Thread group to use.
     */
    private final transient ThreadGroup group;
    /**
     * The Logger.
     */
    Logger logger = LoggerFactory.getLogger(NamedThreads.class);

    /**
     * Public ctor.
     *
     * @param suffix Suffix of thread names
     * @param desc   Description of purpose
     */
    public NamedThreads(final String suffix, final String desc) {
        this.name = String.format("%s", suffix);
        this.purpose = desc;
        this.group = new ThreadGroup("tigris");
    }

    @Override
    public Thread newThread(final Runnable runnable) {
        final Thread thread = new Thread(this.group, runnable);
        thread.setName(this.name);
        thread.setDaemon(true);
        logger.info("tigris started new daemon thread " + this.name + " for " + this.purpose);
        return thread;
    }

}