What is the best way to call a service method from a component in Angular2 with TypeScript?
My service needs to periodically notify components of certain events. Is there a more efficient approach than keeping a reference to the component in the service and calling its methods directly?
Is there a more appropriate or efficient way to achieve this in Angular2?
Thank you.