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

Class QdrantEventEntry

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

Namespace: Cephalon.EventSourcing.Qdrant
Assembly: Cephalon.EventSourcing.Qdrant.dll

Plain-object representation of a single event row stored in a Qdrant vector collection.

public sealed class QdrantEventEntry

objectQdrantEventEntry

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

UTC timestamp when the event was appended to the store.

public DateTime AppendedAtUtc { get; init; }

DateTime

Optional correlation identifier for causality tracking.

public string? CorrelationId { get; init; }

string?

The assembly-qualified CLR type name of the serialized event.

public string EventType { get; init; }

string

UTC timestamp when the domain event occurred.

public DateTime OccurredAtUtc { get; init; }

DateTime

The JSON-serialized event payload.

public string Payload { get; init; }

string

The stream identifier this event belongs to.

public string StreamId { get; init; }

string

The monotonically increasing version of this event within its stream.

public long StreamVersion { get; init; }

long

Optional tenant identifier for multi-tenancy scenarios.

public string? TenantId { get; init; }

string?