ข้ามไปยังเนื้อหา

Class CdcCaptureExecutionRuntimeReportingCoverageStatus

เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน

Namespace: Cephalon.Abstractions.Data
Assembly: Cephalon.Abstractions.dll

Describes the declared-versus-reported coverage currently visible for one CDC execution runtime.

public sealed record CdcCaptureExecutionRuntimeReportingCoverageStatus : IEquatable<CdcCaptureExecutionRuntimeReportingCoverageStatus>

objectCdcCaptureExecutionRuntimeReportingCoverageStatus

IEquatable<CdcCaptureExecutionRuntimeReportingCoverageStatus>

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

CdcCaptureExecutionRuntimeReportingCoverageStatus(string, string?)

Section titled “ CdcCaptureExecutionRuntimeReportingCoverageStatus(string, string?)”

Creates a new execution-runtime reporting-coverage answer.

public CdcCaptureExecutionRuntimeReportingCoverageStatus(string state, string? description = null)

state string

The stable reporting-coverage state, such as unreported, partially-reported, or fully-reported.

description string?

An optional operator-facing reporting-coverage summary.

Gets the number of declared CDC captures currently owned by the execution runtime.

public int DeclaredCaptureCount { get; init; }

int

Gets an optional operator-facing reporting-coverage summary.

public string? Description { get; }

string?

Gets a value indicating whether the execution runtime has reported every declared CDC capture.

public bool HasFullCoverage { get; }

bool

Gets a value indicating whether any declared CDC captures still have not reported runtime state.

public bool HasUnreportedCdcCaptures { get; }

bool

Gets the number of declared CDC captures that have reported runtime state.

public int ReportedCaptureCount { get; init; }

int

Gets the stable reporting-coverage state.

public string State { get; }

string

Gets the number of declared CDC captures that have not reported runtime state yet.

public int UnreportedCaptureCount { get; }

int

Gets the declared CDC capture identifiers that have not reported runtime state yet.

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

IReadOnlyList<string>