Tagged Questions
System.Reactive refers to the Reactive Extensions for .NET, also known as Rx, but it more specifically refers to the use of the System.Reactive.dll assembly, which is part of Rx. System.Reactive provides developers with a reactive programming model, as opposed to the traditional imperative programming model.
67
votes
15answers
13k views
Good introduction to the .NET Reactive Framework
Aside from the Microsoft documentation, is there a good introduction and tutorial to the Microsoft Reactive (Rx) framework?
Also, what is a good example (with code) that Reactive makes easier of a ...
28
votes
2answers
3k views
Reactive Framework vs PLINQ vs Task Parallel Library vs Parallel Extensions [closed]
In a few words, can anyone set the record straight what is what? Does this all end up in .NET 4.0 ?
26
votes
4answers
4k views
Implementing IObservable<T> from scratch
The Reactive Extensions come with a lot of helper methods for turning existing events and asynchronous operations into observables but how would you implement an IObservable<T> from scratch?
...
22
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?
20
votes
6answers
3k views
Good example of Reactive Extensions Use [closed]
I understand the basics of Rx. Where I'm struggling is how you would actually use this beyond academic examples? What are some common, simple real-world scenarios where Rx is a much better solution ...
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?
16
votes
5answers
901 views
Rx - can/should I replace .NET events with Observables?
Given the benefits of composable events as offered by the Reactive Extensions (Rx) framework, I'm wondering whether my classes should stop pushing .NET events, and instead expose Rx observables.
For ...
15
votes
5answers
2k views
Real world examples of Rx
I've been playing around with the Reactive Extension for a little while now, but mostly limited to handling/composing user driven events within a WPF frontend.
It's such a powerful, new way of doing ...
14
votes
5answers
5k 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 ...
11
votes
4answers
551 views
What do the various ISubject implementations do and when would they be used?
I have a fairly good idea of what the Subject class does and when to use it, but I've just been looking through the language reference on msdn and see there are various other ISubject implementations ...
11
votes
1answer
379 views
Rx IObservable buffering to smooth out bursts of events
I have an Observable sequence that produces events in rapid bursts (ie: five events one right after another, then a long delay, then another quick burst of events, etc.). I want to smooth out these ...
10
votes
3answers
345 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, ...
9
votes
4answers
429 views
How do I change the Rx Builder implementation to fix the stack overflow exception?
I'm trying to come up with an Rx Builder to use Reactive Extension within the F# Computation Expression syntax. How do I fix it so that it doesnt blow the stack? Like the Seq example below.
And is ...
9
votes
2answers
2k views
C# 5.0 async/await feature and Rx - Reactive Extensions
I am wondering what do the new C# 5.0 asynchronous features mean for Rx - Reactive Extensions? It seems to be not a replacement but they seem to overlap - Task and IObservable.
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 ...
8
votes
3answers
219 views
Create an observable wrapper for a non thread safe class
I have a class,
public class Test
{
public int Calc();
}
which requires all calls to Calc to be performed on the same thread as the one on which Test was created. I need to create Test once ...
8
votes
4answers
279 views
Keeping references to `IDisposable` when using the Reactive Extensions for .NET: always, never, or sometimes?
Up until now I have zealously kept every reference to the IDisposable returned from any .Subscribe(...), .Connect(...), etc, method within Rx. I've done this because of my fear that a garbage ...
8
votes
2answers
1k views
Reactive Extensions for .NET (Rx): Take action once all events are completed
As a proof of concept, I want to write "Done" in a text box after a check box has been checked and a key has been pressed in a text box (in either order). I would expect this code to handle this, but ...
8
votes
7answers
1k views
How to throttle event stream using RX?
I want to effectively throttle an event stream, so that my delegate is called when the first event is received but then not for 1 second if subsequent events are received. After expiry of that timeout ...
8
votes
3answers
1k views
TPL v/s Reactive Framework
When would one choose to use Rx over TPL or are the 2 frameworks orthogonal?
From what I understand Rx is primarily intended to provide an abstraction over events and allow composition but it also ...
8
votes
6answers
2k views
How can you do Co-routines using C#?
In python the yield keyword can be used in both push and pull contexts, I know how to do the pull context in c# but how would I achieve the push. I post the code I am trying to replicate in c# from ...
7
votes
1answer
227 views
Why would two processes have an advantage over 2 threads?
I have an MSMQ based location application, where I receive position updates from units in the field and they are processed and put in a database.
The update process does not have dependencies ...
7
votes
3answers
2k views
Where is System.CoreEx.dll for Rx.NET
This might seem like a silly question, but I downloaded the Reactive Extensions for .NET from here:
http://msdn.microsoft.com/en-us/devlabs/ee794896.aspx
This simple example is giving me a build ...
7
votes
2answers
530 views
How to convert a WPF Button.Click Event into Observable using Rx and F#
I am trying to replicate some C# code which creates an IObservable from a Button.Click event.
I want to port this code to F#.
Here is the original C# code which compiles without errors:
...
7
votes
6answers
939 views
Books on Reactive Extensions [closed]
Anyone have any suggestions for books on the subject of Reactive Expressions Extensions? I'm intrigued but finding nothing. Is there a more general term I need to look for? Is the technology still ...
7
votes
3answers
1k views
Using Reactive Extensions (Rx) for socket programming practical?
What is the most succint way of writing the GetMessages function with Rx:
static void Main()
{
Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
...
7
votes
3answers
829 views
Reactive Extensions vs FileSystemWatcher
One of the things that has long bugged me about the FileSystemWatcher is the way it fires multiple events for a single logical change to a file. I know why it happens, but I don't want to have to care ...
7
votes
2answers
703 views
How does the Reactive Framework (Rx) relate to Tasks in .NET 4?
Asynchronous and concurrent programmings seams to be on everyones minds these days and .NET 4 adds a number of improvements such as built-in thread safe collections and of course tasks. On top of this ...
7
votes
3answers
773 views
Is it possible to replace traditional event handling in C# with the new Reactive framework?
All examples on System.Reactive.dll I've seen so far deal with Events, EventArgs and EventHandlers, I wonder whether someone can show me an example where event notification is handled without this.
...
7
votes
4answers
1k views
Will there be IQueryable-like additions to IObservable? (.NET Rx)
The new IObservable/IObserver frameworks in the System.Reactive library coming in .NET 4.0 are very exciting (see this and this link).
It may be too early to speculate, but will there also be a (for ...
6
votes
4answers
113 views
Whats the difference between Run and Do in Rx?
The older versions of Reactive Extensions had both a Run and Do extension method for IEnumerable. They both seems to be doing the exact same thing, and I'm unsure of the difference.
I'm asking ...
6
votes
2answers
212 views
Does reactive extensions support rolling buffers?
I'm using reactive extensions to collate data into buffers of 100ms:
this.subscription = this.dataService
.Where(x => !string.Equals("FOO", x.Key.Source))
...
6
votes
1answer
180 views
What's the difference between SubscribeOn and ObserveOn
I just discovered SubscribeOn, which makes me wonder if I should be using that instead of ObserveOn. Google took me here and here, but neither have helped me grok the difference: it seems incredibly ...
6
votes
2answers
170 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
1answer
703 views
when to use Observable.FromEventPattern rather than Observable.FromEvent?
We've got a client calling off to a TIBCO EMS queue and are wiring up the events like this:
var msgConsumer = _session.CreateConsumer(responseQueue);
var response = ...
6
votes
3answers
463 views
Rx: EnumerableEx.For() vs Enumerable.SelectMany()
System.Interactive.dll includes a For() method with the following implementation:
IEnumerable<TResult> For<TSource, TResult>(
IEnumerable<TSource> source,
Func<TSource, ...
6
votes
2answers
828 views
How would I organize these calls using Reactive Extensions (Rx) in Silverlight?
I have some calls that must execute sequentially. Consider an IService that has a Query and a Load method. The Query gives a list of widgets, and the load provides a "default" widget. Hence, my ...
6
votes
1answer
656 views
Killer benefit of Reactive Extensions?
What is the killer benefit of Reactive Extensions (for either .NET or JavaScript)? Why should a developer learn and use them?
6
votes
2answers
826 views
Creating a REST client API using Reactive Extensions (Rx)
I'm trying to get my head around the right use cases for Reactive Extensions (Rx). The examples that keeps coming up are UI events (drag and drop, drawing), and suggestions that Rx is suitable for ...
6
votes
1answer
396 views
What is the practical difference among all of these Reactive Observable extensions?
Given a BehaviorSubject, what is the practical difference between calling all of these different functions on it?
First()
Last()
LatestValue()
MostRecentValue()
NextValue()
Single()
Take(1)
...
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
140 views
How to split an Observable stream in chunks, dependent on second stream?
I thought that this is easy, but my brain is melting right now..
The problem
Given the following IObservable<int> Stream:
1
1
0
0
0
1
0
0
1
0
1
I want to split it into an ...
5
votes
4answers
139 views
What's a good way to report progress from a Repository to the UI
I'm looking for a good way, or at least some insight, on how to cleanly report back progress to the UI layer.
My situation is as follows: I got a Repository in the Infrastructure Layer which ...
5
votes
1answer
83 views
Tricks for debugging with Reactive Extensions? [closed]
I'm looking for ideas on how to make RX more easily debuggable. It can be so very difficult to find the point of failure when a source is passed through combiners and throttles and publishes and such.
...
5
votes
2answers
311 views
How WinRT events are interoperate with .NET
In the latest video by Rx team Bart De Smet: Rx Update - .NET 4.5, Async, WinRT I saw that WinRT events exposed to .NET by some really strange metadata, more preciesly - add_/remove_ pair methods ...
5
votes
2answers
345 views
How do I throttle a slider's value change event?
I got a slider that on value change forces a fairly serious computation, so I want to throttle it to fire actual event after for example 50ms pass when user has finished sliding it.
While I learned ...
5
votes
5answers
238 views
What does Action<Action> mean?
I just saw a brand-new video on the Rx framework, and one particular signature caught my eye:
Scheduler.schedule(this IScheduler, Action<Action>)
At 23:55, Bart de Smet says:
The earliest ...
5
votes
2answers
540 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; ...
5
votes
3answers
489 views
A way to push buffered events in even intervals
What I'm trying to achieve is to buffer incoming events from some IObservable ( they come in bursts) and release them further, but one by one, in even intervals.
Like this:
...