Delegate Csv.ParallelSink<T>
- Namespace
- FlameCsv
- Assembly
- FlameCsv.Core.dll
Delegate for writing data for parallel workloads.
This delegate is called sequentially, and does not need to be thread-safe.
public delegate void Csv.ParallelSink<T>(ReadOnlySpan<T> data, bool isFinalWrite) where T : unmanaged, IBinaryInteger<T>
Parameters
dataReadOnlySpan<T>Data to write to the underlying destination. May be empty
isFinalWriteboolWhether this is the final write
Type Parameters
T