Effects
-
A side effect that happens as a response to a dispatched
Action
.An
Effect
can:- give a new
Action
to dispatch (adispatchingOne
effect) - give an array of new
Action
s to dispatch (adispatchingMultiple
effect) - give nothing (a
nonDispatching
effect)
Declaration
Swift
public enum Effect<Environment>
- give a new