Package org.jboss.as.ee.concurrent

Examples of org.jboss.as.ee.concurrent.ManagedScheduledExecutorServiceImpl$CancellableTrigger


        if(managedThreadFactory == null) {
            // if not injected create one using normal thread priority
            final String threadFactoryName = "EE-ManagedScheduledExecutorService-"+name;
            managedThreadFactory = new ManagedThreadFactoryImpl(threadFactoryName, null, Thread.NORM_PRIORITY);
        }
        executorService = new ManagedScheduledExecutorServiceImpl(name, managedThreadFactory, hungTaskThreshold, longRunningTasks, corePoolSize, keepAliveTime, keepAliveTimeUnit, threadLifeTime, contextService.getOptionalValue(), rejectPolicy);
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.ee.concurrent.ManagedScheduledExecutorServiceImpl$CancellableTrigger

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.