combineMap<K, V> method

void combineMap<K, V>(
  1. MapReducerBuilder<State, StateBuilder, K, V> other
)

combineMap combines this ReducerBuilder with a MapReducerBuilder

Implementation

void combineMap<K, V>(MapReducerBuilder<State, StateBuilder, K, V> other) {
  _map.addAll(other._map);
}