You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Amb currently exposes an overload with IEnumerable<IObservable<TSource>> allowing for dynamically evaluated sequences of observables competing to react first, but strangely it does not provide the fully reactive counterpart with IObservable<IObservable<TSource>>.
This would allow for candidate sequences to be computed reactively. The main difference would be not waiting for all sequences to be available before subscribing to candidates. The first sequence to emit a notification would surface all its notifications. All subscriptions to other sequences, including the higher-order sequence, would be cancelled.
The text was updated successfully, but these errors were encountered:
Feature request
minor
all platforms
Add a higher-order overload to
Amb
with the following signature:Amb
currently exposes an overload withIEnumerable<IObservable<TSource>>
allowing for dynamically evaluated sequences of observables competing to react first, but strangely it does not provide the fully reactive counterpart withIObservable<IObservable<TSource>>
.This would allow for candidate sequences to be computed reactively. The main difference would be not waiting for all sequences to be available before subscribing to candidates. The first sequence to emit a notification would surface all its notifications. All subscriptions to other sequences, including the higher-order sequence, would be cancelled.
The text was updated successfully, but these errors were encountered: