Tagged Questions
23
votes
4answers
4k views
What is LINQ to events a.k.a RX Framework?
What is LINQ to events a.k.a RX Framework aka the Reactive Extensions in .NET 4.0 (but also available as backported versions)?
In other words, what is all the stuff in System.Reactive.dll for?
17
votes
4answers
2k views
Advantages of .NET Rx over classic events?
.NET 4.0 beta 2 has introduced the IObservable and IObserver interfaces.
What are the advantages compared to classic .NET events? Doesn't this solve the same problem?
1
vote
1answer
40 views
Is it possible to create an IObservable from an Action listener?
I have a class that has an event defined as an Action<Guid>, as opposed to a classic EventHandler with EventArgs. Is there a way to convert this to an IObservable the same way would be done ...