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 QdrantEventEntryInheritance
Section titled “Inheritance”Inherited Members
Section titled “Inherited Members”object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()
Properties
Section titled “Properties”AppendedAtUtc
Section titled “ AppendedAtUtc”UTC timestamp when the event was appended to the store.
public DateTime AppendedAtUtc { get; init; }Property Value
Section titled “Property Value”CorrelationId
Section titled “ CorrelationId”Optional correlation identifier for causality tracking.
public string? CorrelationId { get; init; }Property Value
Section titled “Property Value”EventType
Section titled “ EventType”The assembly-qualified CLR type name of the serialized event.
public string EventType { get; init; }Property Value
Section titled “Property Value”OccurredAtUtc
Section titled “ OccurredAtUtc”UTC timestamp when the domain event occurred.
public DateTime OccurredAtUtc { get; init; }Property Value
Section titled “Property Value”Payload
Section titled “ Payload”The JSON-serialized event payload.
public string Payload { get; init; }Property Value
Section titled “Property Value”StreamId
Section titled “ StreamId”The stream identifier this event belongs to.
public string StreamId { get; init; }Property Value
Section titled “Property Value”StreamVersion
Section titled “ StreamVersion”The monotonically increasing version of this event within its stream.
public long StreamVersion { get; init; }Property Value
Section titled “Property Value”TenantId
Section titled “ TenantId”Optional tenant identifier for multi-tenancy scenarios.
public string? TenantId { get; init; }