當前位置: 首頁>>代碼示例>>Java>>正文


Java Type類代碼示例

本文整理匯總了Java中org.apache.hadoop.hbase.master.balancer.BaseLoadBalancer.Cluster.Action.Type的典型用法代碼示例。如果您正苦於以下問題:Java Type類的具體用法?Java Type怎麽用?Java Type使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Type類屬於org.apache.hadoop.hbase.master.balancer.BaseLoadBalancer.Cluster.Action包,在下文中一共展示了Type類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: SwapRegionsAction

import org.apache.hadoop.hbase.master.balancer.BaseLoadBalancer.Cluster.Action.Type; //導入依賴的package包/類
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;
}
 
開發者ID:fengchen8086,項目名稱:ditb,代碼行數:8,代碼來源:BaseLoadBalancer.java

示例2: AssignRegionAction

import org.apache.hadoop.hbase.master.balancer.BaseLoadBalancer.Cluster.Action.Type; //導入依賴的package包/類
public AssignRegionAction(int region, int server) {
  super(Type.ASSIGN_REGION);
  this.region = region;
  this.server = server;
}
 
開發者ID:fengchen8086,項目名稱:ditb,代碼行數:6,代碼來源:BaseLoadBalancer.java

示例3: MoveRegionAction

import org.apache.hadoop.hbase.master.balancer.BaseLoadBalancer.Cluster.Action.Type; //導入依賴的package包/類
public MoveRegionAction(int region, int fromServer, int toServer) {
  super(Type.MOVE_REGION);
  this.fromServer = fromServer;
  this.region = region;
  this.toServer = toServer;
}
 
開發者ID:fengchen8086,項目名稱:ditb,代碼行數:7,代碼來源:BaseLoadBalancer.java

示例4: Action

import org.apache.hadoop.hbase.master.balancer.BaseLoadBalancer.Cluster.Action.Type; //導入依賴的package包/類
public Action (Type type) {this.type = type;} 
開發者ID:fengchen8086,項目名稱:ditb,代碼行數:2,代碼來源:BaseLoadBalancer.java


注:本文中的org.apache.hadoop.hbase.master.balancer.BaseLoadBalancer.Cluster.Action.Type類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。