Delay an Observable pipe until an external condition is met, such as a property being populated on a global object. ngOnInit() { const isIdTokenPopulated = () => !!(this.account.idToken); // Create a notifier Observable that emits when the property is populated (as signaled by an event that …
[Read more...] about Pause RxJS Observable Pipe Until External Condition is Met