コード例 #1
0
ファイル: BatchManager.java プロジェクト: irudyak/ant-toolkit
 @Override
 public Void processEntity(BatchAction batch, HTableInterface table) {
   batch.executeAsRowMutation(table);
   return null;
 }
コード例 #2
0
ファイル: BatchManager.java プロジェクト: irudyak/ant-toolkit
 @Override
 public Void processEntity(BatchAction batch, IAction action) {
   batch.addAction(action);
   return null;
 }