Examples of onOsgiApplicationEvent()


Examples of org.springframework.osgi.context.event.OsgiBundleApplicationContextListener.onOsgiApplicationEvent()

  }

  public void onOsgiApplicationEvent(OsgiBundleApplicationContextEvent event) {
    for (Iterator iterator = listeners.iterator(); iterator.hasNext();) {
      OsgiBundleApplicationContextListener osgiListener = (OsgiBundleApplicationContextListener) iterator.next();
      osgiListener.onOsgiApplicationEvent(event);
    }
  }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.