Header menu logo FCQRS

Effect Type

Represents side effects that can be triggered by a saga after processing an event or timeout.

Union cases

Union case Description

NoEffect

Full Usage: NoEffect

No specific side effect is required.

ResumeFirstEvent

Full Usage: ResumeFirstEvent

Instructs the saga to re-process the first event that started it (used for retries or specific flows).

StopActor

Full Usage: StopActor

Instructs the saga actor to stop itself gracefully.

Instance members

Instance member Description

this.IsNoEffect

Full Usage: this.IsNoEffect

Returns: bool
Returns: bool

this.IsResumeFirstEvent

Full Usage: this.IsResumeFirstEvent

Returns: bool
Returns: bool

this.IsStopActor

Full Usage: this.IsStopActor

Returns: bool
Returns: bool

Type something to start searching.