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

com.amazonaws.services.kinesis.clientlibrary.utils.NamedThreadFactory Maven / Gradle / Ivy

package com.amazonaws.services.kinesis.clientlibrary.utils;

import java.util.concurrent.Executors;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.atomic.AtomicInteger;


/**
 * Custom thread factory that sets thread names based on the specified prefix.
 */
public class NamedThreadFactory implements ThreadFactory {

    private String threadPrefix;
    private ThreadFactory defaultFactory = Executors.defaultThreadFactory();
    private AtomicInteger counter = new AtomicInteger(0);

    /**
     * Construct a thread factory that uses the specified parameter as the thread prefix.
     *
     * @param threadPrefix the prefix with witch all created threads will be named
     */
    public NamedThreadFactory(String threadPrefix) {
        this.threadPrefix = threadPrefix;
    }

    @Override
    public Thread newThread(Runnable r) {
        Thread thread = defaultFactory.newThread(r);
        thread.setName(threadPrefix + counter.incrementAndGet());
        return thread;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy