Package org.eclipse.equinox.concurrent.future

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


    return frameworkUUID;
  }
 
  public EndpointDescriptionLocator(BundleContext context) {
    this.context = context;
    this.executor = new ThreadsExecutor();
    this.frameworkUUID = Activator.getDefault().getFrameworkUUID();
  }
View Full Code Here


      return this.properties;
    }
  }

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

TOP

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

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.