Class RecordingReplayResult
The outcome of replaying a previously recorded flow file in-process.
public sealed record RecordingReplayResult : IEquatable<RecordingReplayResult>
- Inheritance
-
RecordingReplayResult
- Implements
- Inherited Members
Properties
Duration
Wall-clock time from start of replay to completion.
public TimeSpan Duration { get; init; }
Property Value
Passed
True when all steps in the flow passed.
public bool Passed { get; init; }
Property Value
StepResults
Per-step outcomes in execution order.
public IReadOnlyList<string> StepResults { get; init; }
Property Value
Summary
One-line human-readable summary (e.g. "Passed (7 steps in 3s)").
public string Summary { get; init; }