redux_epics library

Classes

EpicClass<State>
A class that acts as an Epic, transforming one stream of actions into another stream of actions. Generally, Epic functions are simpler, but you may have advanced use cases that require a type-safe class.
EpicMiddleware<State>
A Redux middleware that passes a stream of dispatched actions to the given Epic.
EpicStore<State>
A stripped-down Redux Store. Removes unsupported Store methods.
TypedEpic<State, Action>
An wrapper that allows you to create Epics which handle actions of a specific type, rather than all actions.

Functions

combineEpics<State>(List<Epic<State>> epics) Epic<State>
Combines a list of Epics into one.

Typedefs

Epic<State> = Stream Function(Stream actions, EpicStore<State> store)
A function that transforms one stream of actions into another stream of actions.