16 lines
334 B
TypeScript
16 lines
334 B
TypeScript
import { Directive, OnDestroy } from '@angular/core';
|
|
import { Subject } from 'rxjs';
|
|
|
|
@Directive()
|
|
export abstract class BaseService implements OnDestroy {
|
|
|
|
protected _destroyed: Subject<boolean> = new Subject();
|
|
|
|
protected constructor() { }
|
|
|
|
ngOnDestroy(): void {
|
|
this._destroyed.next(true);
|
|
this._destroyed.complete();
|
|
}
|
|
}
|