Package ca.eandb.jdcp.worker.policy

Examples of ca.eandb.jdcp.worker.policy.ExecCourtesyMonitor


    if (!courtesyCommand.equals("")) {
      logger.info("Initializing courtesy monitor");
      if (courtesyPollingInterval == 0) {
        courtesyPollingInterval = DEFAULT_COURTESY_POLLING_INTERVAL;
      }
      ExecCourtesyMonitor exec = new ExecCourtesyMonitor(courtesyCommand, courtesyWorkingDirectory);
      exec.startPolling(courtesyPollingInterval, TimeUnit.SECONDS);
      courtesyMonitor = exec;
    } else {
      courtesyMonitor = new UnconditionalCourtesyMonitor();
    }
View Full Code Here

TOP

Related Classes of ca.eandb.jdcp.worker.policy.ExecCourtesyMonitor

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.