Package org.springframework.osgi.context.event

Examples of org.springframework.osgi.context.event.OsgiBundleApplicationContextEventMulticasterAdapter


    return taskExecutor;
  }

  private OsgiBundleApplicationContextEventMulticaster createDefaultEventMulticaster() {
    isMulticasterManagedInternally = true;
    return new OsgiBundleApplicationContextEventMulticasterAdapter(new SimpleApplicationEventMulticaster());
  }
View Full Code Here


   * events
   *
   * @see OsgiBundleApplicationContextEventMulticasterAdapter
   */
  public void setDelegatedEventMulticaster(ApplicationEventMulticaster multicaster) {
    this.delegatedMulticaster = new OsgiBundleApplicationContextEventMulticasterAdapter(multicaster);
  }
View Full Code Here

   * @param multicaster Spring multi-caster used for propagating OSGi specific
   *                    events
   * @see OsgiBundleApplicationContextEventMulticasterAdapter
   */
  public void setDelegatedEventMulticaster(ApplicationEventMulticaster multicaster) {
    this.delegatedMulticaster = new OsgiBundleApplicationContextEventMulticasterAdapter(multicaster);
  }
View Full Code Here

    return taskExecutor;
  }

  private OsgiBundleApplicationContextEventMulticaster createDefaultEventMulticaster() {
    isMulticasterManagedInternally = true;
    return new OsgiBundleApplicationContextEventMulticasterAdapter(new SimpleApplicationEventMulticaster());
  }
View Full Code Here

TOP

Related Classes of org.springframework.osgi.context.event.OsgiBundleApplicationContextEventMulticasterAdapter

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.