Answer the question
In order to leave comments, you need to log in
Do I need to unsubscribe in this case?
combineLatest(
this.eventsService.subjectSortingDistribution.pipe(
),
this.eventsService.subjectFilterDistribution.pipe(
),
this.eventsService.subjectFilterDistributionReset.pipe(
),
this.eventsService.subjectDistributionListReload,
)
.pipe(takeUntil(this._onDestroy))
.subscribe(() => {
});
combineLatest
:let subscription = combineLatest();
onDestructor() {
subscription.unsubscribe();
}
.pipe(takeUntil(this._onDestroy))
?
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question