Expand description
WAL file system reader.
This module provides a file system backed WAL reader that sequentially reads events from a file using the encoded binary format from the codec module.
The reader enforces strict framed-record integrity with one shared tail
validator. Any corruption (including partial header, partial payload,
unsupported version, or decode-invalid record) is surfaced as typed
WalReaderError::Corruption details with record-start offsets.
Structs§
- WalFs
Reader - A file system backed WAL reader.
Enums§
- WalFs
Reader Error - Errors that can occur when creating a
WalFsReader.