Package org.apache.avalon.fortress.examples.extended.components

Examples of org.apache.avalon.fortress.examples.extended.components.ExtendedComponent


    {
        getLogger().info( "Starting lookup of custom component" );

        for( int i = 0; i < 10; ++i )
        {
            ExtendedComponent comp = (ExtendedComponent)m_serviceManager.lookup( ExtendedComponent.ROLE );
            m_serviceManager.release( comp );
        }

        getLogger().info( "Finished lookups of custom component" );
    }
View Full Code Here


    {
        getLogger().info( "Starting lookup of custom component" );

        for( int i = 0; i < 10; ++i )
        {
            ExtendedComponent comp = (ExtendedComponent)m_serviceManager.lookup( ExtendedComponent.ROLE );
            m_serviceManager.release( comp );
        }

        getLogger().info( "Finished lookups of custom component" );
    }
View Full Code Here

TOP

Related Classes of org.apache.avalon.fortress.examples.extended.components.ExtendedComponent

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.