Class OperationAggregator<T,K,R>  
java.lang.Object
com.inductiveautomation.ignition.common.util.OperationAggregator<T,K,R>  
- All Implemented Interfaces:
- Iterable<AggregationSet<T,- K, - R>> 
The OperationAggregator takes a set of objects, splits them up based on keys determined by a KeyProvider, and then
 aggregates the results back together in the correct order, after some execution has occured. 
Parameters: T - Request type K - Key type R - Result type
Usage:
Parameters: T - Request type K - Key type R - Result type
Usage:
- Create new aggregator with correct types.
- Call aggregator.put() with the input list, and a (usually anonymous) implementation of KeyProvider that returns the key for the given input.
- Iterate through the AggregationSet<T,K,R\> now contained in the aggregator, do something.
- Return aggregator.getResults()
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionprotected classstatic interfaceThe InputValidator provides a way to validate input values before they get to execution.static interfaceprotected class
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.lang.IterableforEach, spliterator
- 
Field Details- 
breakup
 
- 
- 
Constructor Details- 
OperationAggregatorpublic OperationAggregator()
 
- 
- 
Method Details