ExperimentalOptional ExperimentalassemblerQueuing strategy for the assembler's readable side (record output).
Controls how CSV records are buffered after being assembled.
Optional ExperimentalassemblerQueuing strategy for the assembler's writable side (token input).
Controls how tokens are buffered before being processed by the assembler. This is the input side of the assembler, receiving tokens from the lexer.
Optional ExperimentallexerQueuing strategy for the lexer's readable side (token output).
Controls how tokens are buffered after being produced by the lexer before being consumed by the assembler.
Optional ExperimentallexerQueuing strategy for the lexer's writable side (string input).
Controls how string chunks are buffered before being processed by the lexer.
Internal streaming queuing strategies configuration.
Controls the internal queuing behavior of the CSV parser's streaming pipeline. This affects memory usage and backpressure handling for large streaming operations.
Remarks
The CSV parser uses a two-stage pipeline:
Each stage has both writable (input) and readable (output) sides.
This API may change in future versions based on performance research.