AsyncRx icon indicating copy to clipboard operation
AsyncRx copied to clipboard

AsyncRx for F# and Fable

Results 3 AsyncRx issues
Sort by recently updated
recently updated
newest added

- Implemented a variant of a subject that "replays" old values to new subscribers by emitting them when they first subscribe - Added two new test cases based on [RxJs](https://github.com/ReactiveX/rxjs/blob/9aa16a9e1dfe73fd6c6ed4084e96d22847b63f9b/spec/subjects/ReplaySubject-spec.ts#L149-L171)

Howdy! Just curious what your thoughts are on adding an `AsyncRx.subscribeAsync` function? I've been adding via. an extension so that I can chain the transforms with the end subscription like...

[FSharp.Control.Reactive](https://github.com/fsprojects/FSharp.Control.Reactive) is a library that also implements Rx for F#. But it is oriented for the native (.NET, not Fable) runtime and actually is based on [System.Reactive](https://github.com/dotnet/reactive). I like both...