Detecting change of a BehaviorSubject component member variable updated in a subscribe block?
问题 I have an element in a component view: <div>Progress: {{ progress$ | async }}</div> It is supposed to be updated in a continuous way by a next() call in a subscribe() block: progress$: BehaviorSubject<number> = new BehaviorSubject(0); downloadSoundtrack(soundtrack: Soundtrack): void { const fileName: string = soundtrack.name + '.' + MIDI_FILE_SUFFIX; const progress$: Observable<ProgressTask<Uint8Array>> = this.midiService.progressiveCreateSoundtrackMidi$(soundtrack); console.log('Created the