예제 #1
0
 @Override
 public ReduceResult reduce(List<PercolateShardResponse> shardResults) {
   return matchPercolator.reduce(shardResults);
 }
예제 #2
0
 public ReduceResult reduce(byte percolatorTypeId, List<PercolateShardResponse> shardResults) {
   PercolatorType percolatorType = percolatorTypes.get(percolatorTypeId);
   return percolatorType.reduce(shardResults);
 }