Completely new to the world of Observables, so please forgive me if this is a simple question. I've done some research online, but I can't seem to find the answer I'm looking for.
Take a look at this basic example on Plunker:
https://plnkr.co/edit/kgECPQyoKqY7RamebUUu?p=preview
I'm wondering why my Initialized
method isn't being called until my service triggers it. I assumed that the initialized
observable would kick in as soon as I use Observable.forkJoin
. Do I need to initiate the process somehow?
Also, I can't figure out why the subscribe method in my myService.loadOtherData
function doesn't seem to be getting called. Any insights into this would be greatly appreciated.
Thank you in advance!