Closed jritzi closed 3 years ago
It would be helpful for subscribeTo to accept anything that native .subscribe() can (in particular, a BehaviorSubject).
subscribeTo
.subscribe()
BehaviorSubject
Addressed in 4b1aad6379411a6d52c85b65a6edecca19bc7bb4. Use the new SubscriptionManager.manage() for this. E.g.:
SubscriptionManager.manage()
subscriptionManager.manage(observable.subscribe(observer));
It would be helpful for
subscribeTo
to accept anything that native.subscribe()
can (in particular, aBehaviorSubject
).