コード例 #1
0
ファイル: Count.java プロジェクト: xieyuan1988/tddl5
 @Override
 public void serverReduce(Object[] args, ExecutionContext ec) {
   DataType type = this.getReturnType();
   Object o = args[0];
   if (o != null) {
     count += (Long) type.convertFrom(o);
   }
 }