Automatically unsubscribes your subscriptions of your components when the component is destroyed.
A decorator for class property, which automatically calls unsubscribe() on that property value when the component is destroyed (when ngOnDestroy is called).
When you re-assign the property value, the old one will automatically be unsubscribed as well.
@Component({
template: 'Hi'
})
class MyComponent {
@Input() data: Observable<any>;
@unsubscribe()
private sub: Subscription;
constructor() {
this.sub = this.data.subscribe((next) => {
});
//old one will be unsubscribed as well
this.sub = this.data.subscribe((next) => {
});
}
}
Allows to collect multiple subscriptions in one collection to simplify code.
@Component({
template: 'Hi'
})
class MyComponent {
@Input() data: Observable<any>;
@Input() data2: Observable<any>;
@unsubscribe()
private subs = new Subscriptions();
constructor() {
this.sub.add = this.data.subscribe((next) => {
});
this.sub.add = this.data2.subscribe((next) => {
});
}
}