Package org.uncommons.util.id

Examples of org.uncommons.util.id.IntSequenceIDSource


    public ConfigurableThreadFactory(String namePrefix,
                                     int priority,
                                     boolean daemon,
                                     Thread.UncaughtExceptionHandler uncaughtExceptionHandler)
    {
        this.nameGenerator = new StringPrefixIDSource(namePrefix + '-', new IntSequenceIDSource());
        this.priority = priority;
        this.daemon = daemon;
        this.uncaughtExceptionHandler = uncaughtExceptionHandler;
    }
View Full Code Here

TOP

Related Classes of org.uncommons.util.id.IntSequenceIDSource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.