Package com.linkedin.camus.sweeper.utils

Examples of com.linkedin.camus.sweeper.utils.PriorityExecutor


  public void run() throws Exception
  {
    log.info("Starting kafka sweeper");
    int numThreads = Integer.parseInt(props.getProperty("num.threads", DEFAULT_NUM_THREADS));

    executorService = executorService = new PriorityExecutor(numThreads);

    String fromLocation = (String) props.getProperty("camus.sweeper.source.dir");
    String destLocation = (String) props.getProperty("camus.sweeper.dest.dir", "");
    String tmpLocation = (String) props.getProperty("camus.sweeper.tmp.dir", "");
   
View Full Code Here

TOP

Related Classes of com.linkedin.camus.sweeper.utils.PriorityExecutor

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.