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

ee.telekom.workflow.util.NamedPoolThreadFactory Maven / Gradle / Ivy

Go to download

Telekom-workflow-engine core provides the runtime environment for workflow execution together with all the supporting services (clustering, persistence, error handling etc).

There is a newer version: 1.6.3
Show newest version
package ee.telekom.workflow.util;

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

public class NamedPoolThreadFactory implements ThreadFactory{
    private final ThreadGroup group;
    private final AtomicInteger threadNumber = new AtomicInteger( 1 );
    private final String namePrefix;

    public NamedPoolThreadFactory( String poolName ){
        SecurityManager s = System.getSecurityManager();
        group = (s != null) ? s.getThreadGroup() :
                Thread.currentThread().getThreadGroup();
        this.namePrefix = poolName + "-";
    }

    @Override
    public Thread newThread( Runnable r ){
        Thread t = new Thread( group, r, namePrefix + threadNumber.getAndIncrement(), 0 );
        if( t.isDaemon() ){
            t.setDaemon( false );
        }
        if( t.getPriority() != Thread.NORM_PRIORITY ){
            t.setPriority( Thread.NORM_PRIORITY );
        }
        return t;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy