I have a service which is responsible to send and retrieve data to backed. Operations can be: - fetch data (all the model or part of it) - delete one element - update existing element - create new element
Operations can be triggered by user input. I want to make sure that one operation is done only after all the previous are finished. How can this be done with RxJS?
Similar question here, but in that case new operations are not started after the old ones are finished.