Subject
- init Subject -> public readonly goToDirectory$ = new Subject<string>();
- Subscribe Subject -> s = this.common.goToDirectory$.subscribe((folder_id) => { this.getListing(folder_id);});
Emitt Data -> this.common.goToDirectory$.next(folder_id);
Comments
Post a Comment