Package org.apache.excalibur.mpool

Examples of org.apache.excalibur.mpool.DefaultPoolManager


        m_config.setInstrumentManager( new TestInstrumentManager() );
        m_config.setLifecycleExtensionManager( new LifecycleExtensionManager() );
        m_config.setLoggerCategory( "test" );
        m_config.setLoggerManager( new DefaultLoggerManager() );
        m_config.setNumberOfThreadsPerCPU( 10 );
        m_config.setPoolManager( new DefaultPoolManager() );
        m_config.setRoleManager( new FortressRoleManager() );
        m_config.setServiceManager( new DefaultServiceManager() );
        m_config.setThreadTimeout( 50 );
    }
View Full Code Here


        {
            m_poolManager = (PoolManager) m_rootContext.get( PoolManager.ROLE );
        }
        catch ( ContextException ce )
        {
            final PoolManager pm = new DefaultPoolManager( m_sink );
            assumeOwnership( pm );
            m_poolManager = pm;
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.excalibur.mpool.DefaultPoolManager

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.