Package org.apache.sling.commons.threads

Examples of org.apache.sling.commons.threads.ThreadPool


    }
  };

  protected final void execute(final Runnable task) {

    final ThreadPool exec = threadPool;

    if (exec == null) {
      log.debug("executor is unbound");
    } else {
      exec.execute(task);
    }

  }
View Full Code Here

TOP

Related Classes of org.apache.sling.commons.threads.ThreadPool

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.