Effect<S, R> typedef

Effect<S, R> = R Function(SyncEffectNotifier<S, R> notifier, S input)

Signature for functions used by SyncEffectNotifier to execute an action that returns data, using the data of a source ResultNotifier as input.

Implementation

typedef Effect<S, R> = R Function(SyncEffectNotifier<S, R> notifier, S input);