Java 类org.apache.hadoop.hbase.master.balancer.BaseLoadBalancer.Cluster.Action.Type 实例源码

项目:ditb    文件:BaseLoadBalancer.java   
public SwapRegionsAction(int fromServer, int fromRegion, int toServer, int toRegion) {
  super(Type.SWAP_REGIONS);
  this.fromServer = fromServer;
  this.fromRegion = fromRegion;
  this.toServer = toServer;
  this.toRegion = toRegion;
}
项目:pbase    文件:BaseLoadBalancer.java   
public SwapRegionsAction(int fromServer, int fromRegion, int toServer, int toRegion) {
  super(Type.SWAP_REGIONS);
  this.fromServer = fromServer;
  this.fromRegion = fromRegion;
  this.toServer = toServer;
  this.toRegion = toRegion;
}
项目:hbase    文件:BaseLoadBalancer.java   
public SwapRegionsAction(int fromServer, int fromRegion, int toServer, int toRegion) {
  super(Type.SWAP_REGIONS);
  this.fromServer = fromServer;
  this.fromRegion = fromRegion;
  this.toServer = toServer;
  this.toRegion = toRegion;
}
项目:ditb    文件:BaseLoadBalancer.java   
public AssignRegionAction(int region, int server) {
  super(Type.ASSIGN_REGION);
  this.region = region;
  this.server = server;
}
项目:ditb    文件:BaseLoadBalancer.java   
public MoveRegionAction(int region, int fromServer, int toServer) {
  super(Type.MOVE_REGION);
  this.fromServer = fromServer;
  this.region = region;
  this.toServer = toServer;
}
项目:pbase    文件:BaseLoadBalancer.java   
public AssignRegionAction(int region, int server) {
  super(Type.ASSIGN_REGION);
  this.region = region;
  this.server = server;
}
项目:pbase    文件:BaseLoadBalancer.java   
public MoveRegionAction(int region, int fromServer, int toServer) {
  super(Type.MOVE_REGION);
  this.fromServer = fromServer;
  this.region = region;
  this.toServer = toServer;
}
项目:hbase    文件:BaseLoadBalancer.java   
public AssignRegionAction(int region, int server) {
  super(Type.ASSIGN_REGION);
  this.region = region;
  this.server = server;
}
项目:hbase    文件:BaseLoadBalancer.java   
public MoveRegionAction(int region, int fromServer, int toServer) {
  super(Type.MOVE_REGION);
  this.fromServer = fromServer;
  this.region = region;
  this.toServer = toServer;
}
项目:ditb    文件:BaseLoadBalancer.java   
public Action (Type type) {this.type = type;}
项目:pbase    文件:BaseLoadBalancer.java   
public Action (Type type) {this.type = type;}
项目:hbase    文件:BaseLoadBalancer.java   
public Action (Type type) {this.type = type;}