Completed

data class Completed<R>(val value: R) : SagaResult<R>

Saga completed successfully with result.

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

Parameters

value

The result value from the final saga step

Constructors

Link copied to clipboard
constructor(value: R)

Properties

Link copied to clipboard
val value: R