Completed

data class Completed<R, S>(val value: R, val finalState: S) : StatefulSagaResult<R, S>

Saga completed successfully with result and final state.

All steps executed successfully and the saga returned a final result.

Parameters

value

The result value from the final saga step

finalState

The saga state after all steps completed

Constructors

Link copied to clipboard
constructor(value: R, finalState: S)

Properties

Link copied to clipboard
Link copied to clipboard
val value: R