Package com.alibaba.wasp.master.balancer

Examples of com.alibaba.wasp.master.balancer.ClusterStatusChore


  private static Thread getAndStartClusterStatusChore(FMaster master) {
    if (master == null || master.balancer == null) {
      return null;
    }
    Chore chore = new ClusterStatusChore(master, master.balancer);
    return Threads.setDaemonThreadRunning(chore.getThread());
  }
View Full Code Here

TOP

Related Classes of com.alibaba.wasp.master.balancer.ClusterStatusChore

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.