T
- accumulator to hold and update stateU
- type of input that can be handledV
- type of reduced value from the accumulatorpublic interface IReducer<T,U,V>
Modifier and Type | Method and Description |
---|---|
V |
extractResult(T accumulator) |
T |
init() |
T |
reduce(T accumulator,
U input) |