Class OperationAggregator.AggregationEntry
- java.lang.Object
-
- com.inductiveautomation.ignition.common.util.OperationAggregator.AggregationEntry
-
- All Implemented Interfaces:
AggregationSet<T,K,R>
- Enclosing class:
- OperationAggregator<T,K,R>
protected class OperationAggregator.AggregationEntry extends java.lang.Object implements AggregationSet<T,K,R>
-
-
Constructor Summary
Constructors Constructor Description AggregationEntry(K key)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.util.List<OperationAggregator.ValueEntry>
getEntries()
K
getKey()
java.util.List<T>
getValues()
void
setErrorResult(R value)
Sets the single result (usually representing an error) on each entry.void
setResults(java.util.List<R> values)
-
-
-
Constructor Detail
-
AggregationEntry
public AggregationEntry(K key)
-
-
Method Detail
-
getEntries
protected java.util.List<OperationAggregator.ValueEntry> getEntries()
-
getValues
public java.util.List<T> getValues()
- Specified by:
getValues
in interfaceAggregationSet<T,K,R>
-
setResults
public void setResults(java.util.List<R> values)
- Specified by:
setResults
in interfaceAggregationSet<T,K,R>
-
setErrorResult
public void setErrorResult(R value)
Sets the single result (usually representing an error) on each entry.- Specified by:
setErrorResult
in interfaceAggregationSet<T,K,R>
-
-