Class WALEntry
- Namespace
- AiDotNet.RetrievalAugmentedGeneration.Graph
- Assembly
- AiDotNet.dll
Represents a single entry in the Write-Ahead Log.
public class WALEntry
- Inheritance
-
WALEntry
- Inherited Members
Properties
Data
Gets or sets the serialized data for the operation.
public string? Data { get; set; }
Property Value
EdgeId
Gets or sets the edge ID (for edge operations).
public string? EdgeId { get; set; }
Property Value
NodeId
Gets or sets the node ID (for node operations).
public string? NodeId { get; set; }
Property Value
OperationType
Gets or sets the type of operation.
public WALOperationType OperationType { get; set; }
Property Value
Timestamp
Gets or sets the timestamp of the operation.
public DateTime Timestamp { get; set; }
Property Value
TransactionId
Gets or sets the transaction ID.
public long TransactionId { get; set; }