Using RXJS I have the following
merge(this.optionValueChanged$, this.options.changes).subscribe(() => {
this.selectionByValue(this.pValue)
}),
now, on hover this return
@deprecated — use {@link scheduled} and {@link mergeAll} (e.g. `scheduled([ob1, ob2, ob3], scheduled).pipe(mergeAll())
but I read about scheduled, and it looks like it's not exactly doing what I want. Also, I can't figure out what those the scheduled inside the method scheduled stand for.