SagaCompleted

data class SagaCompleted<out R>(val result: R, val timestamp: Long = System.currentTimeMillis()) : SagaEvent

Emitted when the saga completes successfully.

Constructors

Link copied to clipboard
constructor(result: R, timestamp: Long = System.currentTimeMillis())

Properties

Link copied to clipboard
val result: R

The final result value from the saga

Link copied to clipboard
open override val timestamp: Long

Timestamp when the event occurred (milliseconds since epoch).