Working with async 'queue-like' operations in Effect
Hi for every one!
I have a question about working with async operations with Effect
My case:
I have 3 async operations, one of them - polling with 3 seconds, and others - simple requests for backend
Polling run in background and other operations can be fired with user interaction
Problem is that i must not to call Polling operation when on of the others operations not completed
I have stupid and not scalable solution
How we can work with that case in 'Effect way'?
I have a question about working with async operations with Effect
My case:
I have 3 async operations, one of them - polling with 3 seconds, and others - simple requests for backend
Polling run in background and other operations can be fired with user interaction
Problem is that i must not to call Polling operation when on of the others operations not completed
I have stupid and not scalable solution
How we can work with that case in 'Effect way'?
