Package org.eclipse.ecf.discovery

Examples of org.eclipse.ecf.discovery.ServiceContainerEvent


  }

  public void fireServiceResolved(URI anURI, IServiceTypeID id) {
    IServiceInfo iinfo = new ServiceInfo(anURI, "", id); //$NON-NLS-1$
    if(knownServices.add(iinfo)) {
      fireServiceDiscovered(new ServiceContainerEvent(iinfo, getID()));
    }
  }
View Full Code Here


  }

  public void fireServiceRemoved(URI anURI, IServiceTypeID id) {
    IServiceInfo iinfo = new ServiceInfo(anURI, "", id); //$NON-NLS-1$
    if(knownServices.remove(iinfo)) {
      fireServiceUndiscovered(new ServiceContainerEvent(iinfo, getID()));
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.discovery.ServiceContainerEvent

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.