Table of Contents

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

string

EdgeId

Gets or sets the edge ID (for edge operations).

public string? EdgeId { get; set; }

Property Value

string

NodeId

Gets or sets the node ID (for node operations).

public string? NodeId { get; set; }

Property Value

string

OperationType

Gets or sets the type of operation.

public WALOperationType OperationType { get; set; }

Property Value

WALOperationType

Timestamp

Gets or sets the timestamp of the operation.

public DateTime Timestamp { get; set; }

Property Value

DateTime

TransactionId

Gets or sets the transaction ID.

public long TransactionId { get; set; }

Property Value

long