Package org.eclipse.equinox.concurrent.future

Examples of org.eclipse.equinox.concurrent.future.IProgressRunnable


  }

  private void processInitialLocatorServices(final IDiscoveryLocator locator,
      final LocatorServiceListener locatorListener) {
    IProgressRunnable runnable = new IProgressRunnable() {
      public Object run(IProgressMonitor arg0) throws Exception {
        IServiceInfo[] serviceInfos = null;
        try {
          serviceInfos = locator.getServices();
        } catch (Exception e) {
View Full Code Here


    }
  }

  protected IPresence createIPresence(final Presence xmppPresence) {
    final IFuture asyncResult = new ThreadsExecutor().execute(
        new IProgressRunnable() {
          public Object run(IProgressMonitor monitor)
              throws Exception {
            return getVCardForPresence(xmppPresence);
          }
        }, null);
View Full Code Here

TOP

Related Classes of org.eclipse.equinox.concurrent.future.IProgressRunnable

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.