I will be reading a series of inputs from a stream, and perform a HTTP GET request per input. To avoid creating too many connections at a time, I am using async.queue to queue up these inputs.
After all inputs are read (end
emitted to the stream), I would like to collect previous results and generate an overview.
I am currently using queue.drain
for this purpose. But queue.drain
may be called multiple times in my case, since the process could be blocked on input and the queue will be empty when this happens.
So, is there anything in the async library that ensures queue.drain
is called only once when dealing with streams? I don't mind switching to another control flow as long as this functionality could be realized.