As far as I understand it, If configured for using a worker and a stream, PapaParse reads a CSV and returns the chunk in a callback as soon as it is ready. However, this methodology does not allow me to use a producer/consumer paradigm (I'm looking to upload each chunk as a separate file to a cloud-based filesystem).
It would be great if the parsing could just wait with processing the next chunk until a method like getNextChunk(callback) is called.
As far as I understand it, If configured for using a worker and a stream, PapaParse reads a CSV and returns the chunk in a callback as soon as it is ready. However, this methodology does not allow me to use a producer/consumer paradigm (I'm looking to upload each chunk as a separate file to a cloud-based filesystem).
It would be great if the parsing could just wait with processing the next chunk until a method like getNextChunk(callback) is called.