I am used to unsubscribing from Ovservable subscriptions on the ngOnDestroy Hook when I subscribe to an observable within a component. But the problem is when I subscribe from within a Service where there is no such thing as "On Destroy" since the service lives as long as the app is running.
How Do I avoid the memory leak in this case?