I have three methods say method1, method2 and method3 which are implemented in three different services. Please note that these three methods use httpClient in turn. (i.e. they return Observable). method2 is called from different places. In one of the place, I want to call method2 after method1 and method3 is completed.
How can I achieve this using Rxjs Subject or any other technique?
The first place:
OR