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
There are overloads of AsyncEnumerable.Do that accept an Action<Exception>. The problem with this is that is can lead to ambiguity with the one that accepts an Action<T>.
This has caused problems as we start to try to make the existing test suite for Rx.NET work on AsyncRx.NET.
Normal Rx.NET seems to avoid this by offering a more selective set of overloads. We should probably follow suit in AsyncRx.NET.
The text was updated successfully, but these errors were encountered:
There are overloads of
AsyncEnumerable.Do
that accept anAction<Exception>
. The problem with this is that is can lead to ambiguity with the one that accepts anAction<T>
.This has caused problems as we start to try to make the existing test suite for Rx.NET work on AsyncRx.NET.
Normal Rx.NET seems to avoid this by offering a more selective set of overloads. We should probably follow suit in AsyncRx.NET.
The text was updated successfully, but these errors were encountered: