Table of Contents

Class WorkflowReplayResult

Namespace
Temporalio.Worker
Assembly
Temporalio.dll

Result of a workflow replay from WorkflowReplayer.

public record WorkflowReplayResult : IEquatable<WorkflowReplayResult>
Inheritance
WorkflowReplayResult
Implements
Inherited Members

Constructors

WorkflowReplayResult(WorkflowHistory, Exception?)

Result of a workflow replay from WorkflowReplayer.

public WorkflowReplayResult(WorkflowHistory History, Exception? ReplayFailure)

Parameters

History WorkflowHistory

History that was run.

ReplayFailure Exception

Workflow task failure during replay (e.g. nondeterminism). Note, this is not a normal workflow failure which is not currently captured by replayer.

Properties

History

History that was run.

public WorkflowHistory History { get; init; }

Property Value

WorkflowHistory

ReplayFailure

Workflow task failure during replay (e.g. nondeterminism). Note, this is not a normal workflow failure which is not currently captured by replayer.

public Exception? ReplayFailure { get; init; }

Property Value

Exception