Table of Contents

Class RecordingReplayResult

Namespace
Cress.Studio.Services
Assembly
Cress.Studio.Core.dll

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

TimeSpan

Passed

True when all steps in the flow passed.

public bool Passed { get; init; }

Property Value

bool

StepResults

Per-step outcomes in execution order.

public IReadOnlyList<string> StepResults { get; init; }

Property Value

IReadOnlyList<string>

Summary

One-line human-readable summary (e.g. "Passed (7 steps in 3s)").

public string Summary { get; init; }

Property Value

string