1
vote
3answers
130 views
Reactive Extensions (Rx) + MVVM = ?
One of the main examples being used to explain the power of Reactive Extensions (Rx) is combining existing mouse events into a new 'event' representing deltas during mouse drag:
var mouseMoves = from …
0
votes
1answer
108 views
Reactive Framework for .NET examples that prove its usefulness
There's been quite some hype around the new Reactive Framework in .NET 4.0. While I think I undestood its basic concept I am not completely sold that it is that useful. Can you come up with a good …
4
votes
2answers
189 views
Using System.Reactive in .NET 3.5 (in a shipping product)
I've downloaded the Silverlight 3 toolkit and rebased System.Reactive.dll to work on the .NET 3.5 CLR, and am really enjoying using it.
What I'd like to know is, can I ship it?
The codeplex site …
12
votes
3answers
556 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
2answers
295 views
Equivalent to LINQ to Events in Scala
Is it possible to do something similar to LINQ to Events in Scala? Is this similar to the new Traversable trait in Scala 2.8?
23
votes
7answers
4k views
What is (functional) reactive programming?
What does it mean in practice? What is non-reactive programming? Wikipedia has quite abstract description of it.
