After attempting to send data from one component to another using a service, I followed the guidance provided in this answer. Unfortunately, the data is not being received by the receiver component. I also explored the solution suggested in this question. Another possibility could be that I am calling the essential "commands" in an incorrect order. It seems there is a specific sequence when working with Observables.
- create Observable --> private dataSubject = new Subject();
- call Observable --> subscribe();
- execute Observable --> next();
- dispose --> unsibscribe();
I am hoping for clarification on whether my understanding of observables is incorrect or if there is a mistake in my implementation. Thank you!