Package org.foo.dosgi.registry

Examples of org.foo.dosgi.registry.RegistryEvent


  public void registerService(ServiceReference ref, String iface, Object svc) {
    RegistryServiceReferenceImpl reg = new RegistryServiceReferenceImpl(
        ref, iface, svc);
    references.put(ref, reg);
    notify(new RegistryEvent(this, reg, RegistryEvent.Type.ADDED));
  }
View Full Code Here


    notify(new RegistryEvent(this, reg, RegistryEvent.Type.ADDED));
  }

  public void unregisterService(ServiceReference ref) {
    RegistryServiceReference reg = references.remove(ref);
    notify(new RegistryEvent(this, reg, RegistryEvent.Type.REMOVED));
  }
View Full Code Here

TOP

Related Classes of org.foo.dosgi.registry.RegistryEvent

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.