Tagged Questions

18
votes
3answers
5k views

101 Rx Examples

EDIT: Thanks for the link to the wiki, I think that since its already started there, its easier to go there to check it out. However the question here is also good, so people who are not around the ...
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?
9
votes
1answer
674 views

IConnectableObservables in Rx

Can someone explain the differences between an Observable and a ConnectableObservable? The Rx Extensions documentation is very sparse and I don't understand in what cases the ConnectableObservable is ...
6
votes
2answers
1k views

Has RX Extensions “solved” the problem of complex event driven programming?

I've been using Rx on a new financial analysis project that receives all data asynchronously. I've been pretty amazed at my personal productivity and how much more understandable my event based code ...
5
votes
3answers
366 views

Rx in .Net 3.5 not Asynchronous?

I am playing with Rx in .Net3.5SP1 and trying the 101 Rx Samples. I am trying the first sample (Start - Run Code Asynchronously) but it doesn't seem to actually run asynchronously. For example, ...
5
votes
1answer
1k 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 ...
2
votes
2answers
74 views

Programming usable and maintainable code

I'm new to reactive programming and came across a problem... My code is looking like this: IsBusy = true; service.BeginGetClients(param, c => { var r = ...
2
votes
1answer
517 views

Aggregating the result of a ForkJoin in Rx

Given this piece of code: var loadAll = Observable.ForkJoin( service1.FindBooksAsObservable().Select(s => s), service2.FindBooksAsObservable().Select(s => s), ...
2
votes
3answers
412 views

Reactive Framework Hello World

This is an easy program to introduce the Reactive Framework. But I want to try the error handler, by modifying the program to be: var cookiePieces = Observable.Range(1, 10); cookiePieces.Subscribe(x ...
0
votes
2answers
42 views

Cross thread exception when using RX Throttle

I am getting Invalid cross-thread access. When using RX Throttle Here is my code: yObs.SubscribeOnDispatcher() .DistinctUntilChanged() ...
0
votes
1answer
106 views

HTTP POST Reactive Extention async. pattern handle errors

I am trying to use the following code, but it does not work when exception occurs. Can anyone help me out on this? i am trying to throw web exception in the fetchresponse().catch(). is it possible to ...
0
votes
1answer
171 views

How to get received message buffer from connected client socket using Socket and Reactive extension (Rx)

As i am bit new to Rx and learning my way through it. I checked out lots of examples out there but none fits my need. Scenario : I have one socket server socket (created using simple socket object ...
0
votes
1answer
227 views

How can I filter the events using Throttle

I'm trying reactive-framework in a win-form. IObservable<IEvent<MouseEventArgs>> mouseMoves = Observable.FromEvent<MouseEventArgs>(this, "MouseMove"); ...
0
votes
1answer
60 views

How does one create a single instance of Notification<T>?

Using Rx, is there a simple way to create a single Notification<T>? The closest I've been able to find is: T value = ..; var notifyValue = EnumerableEx.Return(value).Materialize().First(); ...