TestComponent
2829303132333435363738
{ 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" ); }
3031323334353637383940