After

data class After<C, R, S>(val step: TypedValue, val result: R, val state: S) : StepPhase<C, R, S>

The step has completed its forward action successfully.

Interceptor return value and throws are swallowed — the step already succeeded.

Constructors

Link copied to clipboard
constructor(step: TypedValue, result: R, state: S)

Properties

Link copied to clipboard
val result: R

The result produced by the forward action

Link copied to clipboard
val state: S

The current saga state (Unit for non-stateful executors)

Link copied to clipboard

The step identifier