Open irony opened 7 years ago
The way I would write it now is this:
const queue = amqp(url).queue('trip', {durable:true})
trips.fork().each(trip => queue.publish(trip, {persistent: true}))
I'll have a look at pipe
and see how I'd get your suggestion to work.
If I have a highland stream, I would like instead of this code:
To be able to write something like this:
Would that be possible?