Interface CreateOptions

Options for the create function.

interface CreateOptions {
    loopUntilSettled?: boolean;
}

Properties

loopUntilSettled?: boolean

If true then when a task is dispatched all the handlers will be called repeatedly until none of them change the state object. If false each handler is only called once per dispatched Action or InlineHandler (default).