Running Multiple Blocking Processes in Parallel with Effect.ts
Helloo guys and thanks for your quick answer that are always kind and helpful. In my projet, I need to listen to queues (SQS queues but whatever), and execute an handler when a new message arrive. I use sqs-consumer, but whatever, it has a start method and then, it blocks. I've seen there is a layer in Effect where I can run multiple blocking process at the same time. How would you run multi Effect (10 or 20), each blocking with Effect.ts ?
