F# implementation of SelectMany and TakeUntil (from Rx) on F# events
19 people like thisPosted: 13 years ago by Ankur Dhama
Computation builder that provides easy way of constructing IDisposable objects. It supports elegant composition of disposable objects using 'do!' which can be used for example when working with 'IObservable' type.
42 people like thisPosted: 13 years ago by Tomas Petricek
Subject is a class that implements both IObservable<'T> and IObserver<'T>
6 people like thisPosted: 13 years ago by Tuomas Hietanen
Naive performance comparison of push model libraries: Reactive Extension (Rx), Observable module (built-in to F#) and Nessos Streams. Note: smaller numbers are better
12 people like thisPosted: 10 years ago by Phillip Trelford
Helper Type Extension to convert an Async computation to IObservable.
4 people like thisPosted: 9 years ago by Riccardo Terrell
Wraps an Async as an IObservable to allow easier consumption by other .NET languages. Many thanks to desco for his help: http://cs.hubfs.net/forums/thread/16545.aspx
5 people like thisPosted: 13 years ago by Ryan Riley
Rx CombineLatest for list of IObservable<'a> to IObservable<'a array>.
13 people like thisPosted: 13 years ago by Ankur Dhama
Simple Async Observable Subject<'T> based on MailboxProcessor. Type declaration is more ML like, but the idea is represented in a simple way!
6 people like thisPosted: 12 years ago by Fahad
Helper Type Extension to convert a System.Threading.Tasks.Task to IObservable.
1 people like thisPosted: 9 years ago by Riccardo Terrell