Signet Forge 0.1.0
C++20 Parquet library with AI-native extensions
DEMO
Loading...
Searching...
No Matches
signet::forge::WalEntry Struct Reference

A single decoded WAL record returned by WalReader::next() or read_all(). More...

#include <wal.hpp>

Public Attributes

int64_t seq = -1
 Sequence number (0-based, monotonically increasing)
 
int64_t timestamp_ns = 0
 Wall-clock timestamp in nanoseconds since Unix epoch.
 
std::vector< uint8_t > payload
 Raw record bytes (application-defined content)
 

Detailed Description

A single decoded WAL record returned by WalReader::next() or read_all().

Definition at line 200 of file wal.hpp.

Member Data Documentation

◆ payload

std::vector<uint8_t> signet::forge::WalEntry::payload

Raw record bytes (application-defined content)

Definition at line 203 of file wal.hpp.

◆ seq

int64_t signet::forge::WalEntry::seq = -1

Sequence number (0-based, monotonically increasing)

Definition at line 201 of file wal.hpp.

◆ timestamp_ns

int64_t signet::forge::WalEntry::timestamp_ns = 0

Wall-clock timestamp in nanoseconds since Unix epoch.

Definition at line 202 of file wal.hpp.


The documentation for this struct was generated from the following file: