Just curious whether Subscription
instances that are not referenced need to be unsubscribed? For example this demo calls:
onSubmit(creds: Creds) {
this.authService.login(creds).subscribe();
}
So each time the someone logs in a Subscription
instance is created and returned, but there are no handles to it.
IIUC these will just be garbage collected, but figure I'd double check just to be on the safe side.