Routing Builder
Collects model initial instances and action handlers, then produces the initial ModelState and the routed Reducer. This is the receiver of the createModelStore lambda and of ReduxModule contributions. Registration order across the whole block (including installed modules) fixes the dispatch order for any action handled by more than one handler.
Functions
Applies a ReduxModule's registrations to this builder, in call order.
Registers a broadcast handler for action A that runs once per installed model. transform receives each model instance and returns its (possibly unchanged) replacement. Use for cross-cutting actions such as reset/logout that every model must observe. The transform must be pure: it must not call dispatch or read the store, only compute the next model from its inputs.