SequentialSimpleAsyncSubject and other are not in Async Rx Nuget.
Nuget System.Interactive.Async 4.1.1
We need to add a System.Reactive.Async NuGet package, with a preview version number, given that all of the Async Rx stuff is in an experimental state.
@clairernovotny, easy to make this happen?
We can do it anytime it's ready to go out.
As long as we mark this as a preview using semantic versioning, I'm happy to make a NuGet for it so people can play around with it. There's an expectation that APIs may change (now that IAsyncEnumerable<T> etc. are done, we can see what it means for the duality in IAsyncObservable<T>, in particular around cancellation semantics), but that's the nature of a preview.
The current design here https://github.com/dotnet/reactive/tree/master/AsyncRx.NET has a lot of granular libraries. Do we want that or should we combine as a single System.Reactive.Async library?
@bartdesmet see also #1296 regarding API changes.
Most helpful comment
As long as we mark this as a preview using semantic versioning, I'm happy to make a NuGet for it so people can play around with it. There's an expectation that APIs may change (now that
IAsyncEnumerable<T>etc. are done, we can see what it means for the duality inIAsyncObservable<T>, in particular around cancellation semantics), but that's the nature of a preview.