Resumed

data class Resumed<R, S>(val result: R, val state: S, val terminal: TerminalOutcome) : ResumeOutcome<R, S>

The run was found and its outcome decoded.

No saga steps are re-executed — the result and state are reconstructed from journal entries by replaying the user-supplied StateReducer.

Parameters

result

The original saga result (last Effect payload decoded as R).

state

The reconstructed saga state after replaying all Effect entries.

terminal

Whether the original run committed, aborted, or ended indeterminate.

Constructors

Link copied to clipboard
constructor(result: R, state: S, terminal: TerminalOutcome)

Properties

Link copied to clipboard
val result: R
Link copied to clipboard
val state: S
Link copied to clipboard