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

Class CdcCapturePublicationStatus

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

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

Describes the publication posture currently visible for one CDC capture.

public sealed record CdcCapturePublicationStatus : IEquatable<CdcCapturePublicationStatus>

objectCdcCapturePublicationStatus

IEquatable<CdcCapturePublicationStatus>

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

CdcCapturePublicationStatus(string, long?, string?)

Section titled “ CdcCapturePublicationStatus(string, long?, string?)”

Creates a new CDC publication status.

public CdcCapturePublicationStatus(string state, long? pendingPublicationCount = null, string? description = null)

state string

The stable publication-state identifier, such as unknown, pending-publication, or dispatch-retry-pending.

pendingPublicationCount long?

The number of pending publications still waiting to flow through the linked outbox path when the provider can report that answer.

description string?

An optional operator-facing publication summary.

Gets an optional operator-facing publication summary.

public string? Description { get; }

string?

Gets a value indicating whether the capture still has pending publications.

public bool HasPendingPublications { get; }

bool

Gets the number of pending publications still waiting to flow through the linked outbox path when one is known.

public long? PendingPublicationCount { get; }

long?

Gets the stable publication-state identifier.

public string State { get; }

string