StateT
- The type of state it generates updates for.@FunctionalInterface public static interface StateSynchronizer.UpdateGenerator<StateT extends Revisioned> extends java.util.function.BiConsumer<StateT,java.util.List<Update<StateT>>>
stateSynchronizer.updateState((state, updates) -> {
updates.addAll(findUpdatesForState(state));
});