Package org.sonatype.nexus.proxy.maven.routing.internal.task.executor

Examples of org.sonatype.nexus.proxy.maven.routing.internal.task.executor.Statistics


  public boolean isUpdatePrefixFileJobRunning() {
    if (config.isFeatureActive() && !periodicUpdaterDidRunAtLeastOnce) {
      log.debug("Boot process not done yet, periodic updater did not yet finish!");
      return true;
    }
    final Statistics statistics = constrainedExecutor.getStatistics();
    log.debug("Running update jobs for {}", statistics.getCurrentlyRunningJobKeys());
    return !statistics.getCurrentlyRunningJobKeys().isEmpty();
  }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.proxy.maven.routing.internal.task.executor.Statistics

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.