Package alluxio.stress
Interface TaskResult.Aggregator<T extends TaskResult>
-
- Type Parameters:
T- aTaskResulttype
- All Known Implementing Classes:
RpcTaskResult.Aggregator
- Enclosing interface:
- TaskResult
public static interface TaskResult.Aggregator<T extends TaskResult>The interface that aggregates multiple task results into a summary.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Summaryaggregate(java.lang.Iterable<T> results)Aggregates multiple instances of aTaskResultto a summary.
-
-
-
Method Detail
-
aggregate
Summary aggregate(java.lang.Iterable<T> results) throws java.lang.Exception
Aggregates multiple instances of aTaskResultto a summary.- Parameters:
results- list ofTaskResult- Returns:
- the aggregated summary
- Throws:
java.lang.Exception
-
-