Expand description
Streaming boundary-aligned wrapper for newline-delimited JSON range reads.
AlignedBoundaryStream wraps a raw byte stream and lazily aligns to
record (newline) boundaries, avoiding the need for separate get_opts
calls to locate boundary positions.
Structs§
- Aligned
Boundary Stream - A stream wrapper that lazily aligns byte boundaries to newline characters.
Constants§
- END_
SCAN_ LOOKAHEAD - How far past
raw_endthe initial bounded fetch covers. If the terminating newline is not found within this window,ScanningLastTerminatorissues successive same-sized GETs until the newline is located or EOF is reached.