@Input()
set ngSubscribe(inputObservable: Observable<any>) {
if (this.observable !== inputObservable) {
this.observable = inputObservable;
this.subscription && this.subscription.unsubscribe();
this.subscription = this.observable.subscribe(value => {
this.context.ngSubscribe = value;
this.cdr.markForCheck();
});
}
}