Package org.apache.hivemind.events

Examples of org.apache.hivemind.events.RegistryInitializationListener


                .constructRegistryInfrastructure(_registryDefinition);

        // Notify initialization listeners
        for (Iterator i = _registryDefinition.getRegistryInitializationListeners().iterator(); i.hasNext();)
        {
            RegistryInitializationListener listener = (RegistryInitializationListener) i.next();

            listener.registryInitialized(infrastructure);
        }
       
        infrastructure.startup();

        return new RegistryImpl(infrastructure);
View Full Code Here

TOP

Related Classes of org.apache.hivemind.events.RegistryInitializationListener

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.