Expand description
Reducer context and effect builder.
When a reducer needs to emit side-effects or inspect the ActionInput
that triggered it, it receives a ReducerContext. The context provides
an Effects builder for issuing system effects (HTTP, file I/O, alerts)
and binding callback actions.
Structsยง
- Effect
Builder - Fluent builder returned by
Effects::system_effect,Effects::http_get, andEffects::file_read. - Effects
- Builder for emitting side-effects from within a reducer.
- Reducer
Context - The context passed to modern 3-argument reducer handlers.