Package org.apache.james.util.concurrent

Examples of org.apache.james.util.concurrent.NamedThreadFactory


    private int totalTasks;
    private MBeanServer mbeanServer;
    private String mbeanName;
   
    public JMXEnabledOrderedMemoryAwareThreadPoolExecutor(int corePoolSize, long maxChannelMemorySize, long maxTotalMemorySize, String jmxPath, String name) {
        super(corePoolSize, maxChannelMemorySize, maxTotalMemorySize, 30, TimeUnit.SECONDS, new NamedThreadFactory(name));
        this.jmxPath = jmxPath;
        registerMBean();
    }
View Full Code Here

TOP

Related Classes of org.apache.james.util.concurrent.NamedThreadFactory

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.