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 so:
myObservable
|> AsyncRx.map (fun x -> x + 1)
|> AsyncRx.filter (fun x -> x < 6)
|> AsyncRx.subscribeAsync printObserver
|> Async.RunSynchronously
Do you think there's enough merit in making this a part of the core?
Howdy!
Just curious what your thoughts are on adding an
AsyncRx.subscribeAsyncfunction?I've been adding via. an extension so that I can chain the transforms with the end subscription like so:
Do you think there's enough merit in making this a part of the core?