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 ...
10
votes
3answers
347 views

Examples of useful or non-trival dual interfaces

Recently Erik Meijer and others have show how IObservable/IObserver is the dual of IEnumerable/IEnumerator. The fact that they are dual means that any operation on one interface is valid on the other, ...
6
votes
2answers
171 views

Why does IObservable<T>.First() block?

I've been trying to get my head around the Reactive Extensions for .NET of late, but have hit a bit of a conceptual wall: I can't work out why IObservable.First() blocks. I have some sample code that ...
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 ...
6
votes
2answers
3k views

Using System.Reactive in .NET 3.5 (in a shipping product)

This question is no longer relevant now that microsoft have released a proper version of the Rx framework on devlabs Original Question I've downloaded the Silverlight 3 toolkit and rebased ...
5
votes
2answers
544 views

Delay and de-duplication using Reactive Extensions (Rx)

I want to use Reactive Extensions to transform some messages and relay them after a small delay. The messages look something like this: class InMsg { int GroupId { get; set; } int Delay { get; ...
2
votes
2answers
65 views

Understand the flow of control when calling a blocking code from non-blocking block?

I have the following code static void Main(string[] args) { //var source = BlockingMethod(); var source2 = NonBlocking(); ...
2
votes
2answers
171 views

Why do I NOT need Publish on this cold observable?

Since I'm having a cold Observable here and I subscribe to "grouped" several times, why do I NOT need Publish here? I would have expect it to bring up unwanted results when I run it but to my surprise ...
2
votes
1answer
80 views

Why am I getting non-deterministic results with Repeat()

I'm trying to expand my knowledge on Rx. So I'm just playing around with streams and try to make them behave as I would expect them to do. While I have read bevor that the Repeat() operator has ...
2
votes
3answers
185 views

Working with a list<String> and Reactive extensions

I have started researching Reactive extensions and I would like to know how to do the following (ill try and keep it simple): 1) have a list of string (or any other type) 2) when an item is added to ...
2
votes
3answers
302 views

Observable.Delay calling Dispose before OnNext is fired

I am having problem understanding how Observable.Delay works and when the Dispose() is meant to be called. Would anyone familiar with Rx be able to help please? The following code snippet: ...
2
votes
3answers
414 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 ...
1
vote
4answers
93 views

Computed array values in C# - reactive programming

Example 1 As we know there's the concept of computed columns in databases where a column is computed based on adjacent columns' values. The problem is that computed columns can't relate to other ...
1
vote
1answer
186 views

How to combine intermediate events in a Reactive Framework stream?

I'm still fairly new to Rx and am having a hard time figuring out how to express this (seemingly) simple subscription. I'm looking for something like this: Start: InTransaction.Where(inTransaction ...
0
votes
1answer
373 views

Left mouse button click detect on winform using Reactive extensions IObservable on events

Just started reading on Reactive extensions. I am trying to watch a simple left mouse button click on my winform. Meaning anywhere there is a click (on any control on the form including the form) I ...
0
votes
1answer
228 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"); ...