Package org.impalaframework.service.event

Examples of org.impalaframework.service.event.ServiceRegistryEventListener


  private void removeListener(ServiceRegistryEventListener listener, List<ServiceRegistryEventListener> listeners) {
   
    for (Iterator<ServiceRegistryEventListener> iterator = listeners.iterator(); iterator.hasNext();) {
     
      ServiceRegistryEventListener currentListener = iterator.next();
     
      if (currentListener == listener) {
        iterator.remove();
        if (logger.isDebugEnabled())
          logger.debug("Removed service registry listener " + listener);
View Full Code Here

TOP

Related Classes of org.impalaframework.service.event.ServiceRegistryEventListener

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.