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
WorkflowHistoryHistory that was run.
ReplayFailure
ExceptionWorkflow 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
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; }