Package org.apache.geronimo.concurrent.impl

Examples of org.apache.geronimo.concurrent.impl.NotificationHelper


                                                      GeronimoManagedThreadFactorySource threadFactorySource,
                                                      String[] contextHandlerClasses) {
        super(classLoader, corePoolSize, threadFactorySource, contextHandlerClasses);              
        this.name = name;     
       
        NotificationHelper notificationHelper = new NotificationHelper(kernel, name);
        this.threadFactory = new ServerManagedThreadFactory(threadFactorySource.getManagedThreadFactory(), notificationHelper);
    }
View Full Code Here


                                             GeronimoManagedThreadFactorySource threadFactorySource,
                                             String[] contextHandlerClasses) {
        super(classLoader, minPoolSize, maxPoolSize, keepAliveTime, queueCapacity, threadFactorySource, contextHandlerClasses);              
        this.name = name;   
       
        NotificationHelper notificationHelper = new NotificationHelper(kernel, name);
        this.threadFactory = new ServerManagedThreadFactory(threadFactorySource.getManagedThreadFactory(), notificationHelper);
    }
View Full Code Here

    public ManagedThreadGBean(Kernel kernel,
                              ClassLoader classLoader,
                              AbstractName name) {
        this.name = name;
       
        this.notificationHelper = new NotificationHelper(kernel, name);
    }
View Full Code Here

                                     long hungTaskThreshold,
                                     long hungTaskMonitorFrequency) {  
        super(kernel, classLoader);
        this.name = name;
               
        this.notificationHelper = new NotificationHelper(kernel, name);
      
        List<ManagedContextHandler> handlers =
            ContextHandlerUtils.loadHandlers(classLoader, contextHandlerClasses);
       
        this.mainContextHandler = new ManagedContextHandlerChain(handlers);
View Full Code Here

TOP

Related Classes of org.apache.geronimo.concurrent.impl.NotificationHelper

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.