Node walk presents an API with a few events like this.
walker.on('file', (root, filestats, next) => {
// next should be called to goto next file
next();
});
walker.on('end', () => {
// the end of the stream
});
Is it reactive if from the subscriber
you're calling a function to inform the source
to go to the next item in the stream ? Events don't wait for the subscriber to react to it, right ?
How do I transform this into a Rx Observable ?
Your best bet is to create a wrapper around it:
I updated your example accordingly