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 ...
0
votes
0answers
16 views
Rx when debugging how do i know which scheduler is being used?
When debugging, how do i find out the type of scheduler which an observable is using to schedule work?
From my understanding, operator Interval and SelectMany seems to be scheduling work using the ...
1
vote
1answer
18 views
Converting Bing Map’s “ViewChangeEnded” Event to an Observable sequence in WinRT
How I can convert Bing Map’s “ViewChangeEnded” event to Observable sequence in Windows 8.
8
votes
0answers
39 views
How I can make use of Microsoft Rx Framework to implement Bing Map effectively in WinRT / Windows 8
In my e-commerce application I need to plot my nearby stores in Bing map, And my another requirement is during the time of zooming and paning the map I need to update my stores based on the map ...
0
votes
2answers
36 views
Rx : Issue with Exception handlign stream
I am trying to create a small rx Exception handling chunk of code, where I am expecting to get the same exception shown under a particular situation.
The actual use case is that I have a button that ...
0
votes
1answer
32 views
RX: How to concat a Snapshot stream and an Update stream?
I've been trying to create an observable which streams a state-of-the-world (snapshot) from a repository cache, followed by live updates from a separate feed. The catch is that the snapshot call is ...
0
votes
1answer
23 views
Reactive Depth-First Search with cut
I am trying to develop a reactive DFS implementation that produces distinct nodes, without traversing unnecessary paths. The tree may contain duplicate/equal nodes. If a node has been traversed, then ...
5
votes
4answers
125 views
When to use IEnumerable vs IObservable?
How do you establish whether or not a method should return IEnumerable<T> or IObservable<T>?
Why would I choose one paradigm over the other?
4
votes
2answers
58 views
Make Reactive Extensions Buffer wait for asynchronous operation to complete
I am using Reactive Extensions (Rx) to buffer some data. I'm having an issue though in that I then need to do something asynchronous with this data, yet I don't want the buffer to pass the next group ...
1
vote
1answer
25 views
Reactive Extensions RX sample several observables on interval to get latest values
I have a situation where i need to sample several observables at times defined by a controlling observable.
I'll jump straight to a marble diagram.
co below is the controlling observable ...
3
votes
1answer
50 views
Convert IEnumerable<Task<T>> to IObservable<T>
I'm trying to use the Reactive Extensions (Rx) to buffer an enumeration of Tasks as they complete. Does anyone know if there is a clean built-in way of doing this? The ToObservable extension method ...
0
votes
1answer
38 views
SignalR and Reactive combo
I found this little gem about how to get SignalR and Rx to play nicely:
Rx and Reactive Tutorial
However as you might have noticed this only works when going from server -> client. Does anyone know ...
3
votes
1answer
96 views
Why is it so easy to deal with concurrency with Rx? [closed]
A few months back, we introduce Rx into our codebase, and since then the codebase is getting more and more "reactive". I feel that it is really easy to introduce concurrency into the codebase with Rx, ...
0
votes
2answers
53 views
IObserver and IObservable in C# for Observer vs Delegates, Events
All I am trying to do is implementing the observer pattern.
So, I came up with this solution:
We have a PoliceHeadQuarters whose primary job is to send notifications to all those who are subscribed ...
0
votes
1answer
35 views
Rx Timeout with Select?
Observable.Interval(TimeSpan.FromSeconds(5))
.Timeout(dueTime: DateTimeOffset.UtcNow,
other: Observable.Return<long>(-1))
.Subscribe(Console.WriteLine);
The code snippet above would return -1 ...
2
votes
2answers
99 views
Sharing queries between Rx and LINQ (or generically, streams and lists)
How can one go about sharing query logic between LINQ and Rx? i.e., if I need to sometimes query against an IObservable stream and sometimes against an IEnumerable, but the exact same logic is in ...
2
votes
1answer
40 views
How does SelectMany work when source and target streams are the same in C# Reactive Framework?
I've got two Subjects, one that is a stream of person objects with ID, and one that is a stream of xref of IDs representing who has befriended whom. Here's some simplified code.
class Program {
...
0
votes
3answers
51 views
how to convert IEnumerable to IObservable?
I'm looking to convert an IEnumerable collection to an IObservable one
without using Rx ToObservable() and ToEnumerable() methods.
0
votes
1answer
31 views
How Implement a simple 'Reactive extension'-like functions in .net3.5 by self
I can't persuable my boss to accept the Rx libraries installed in our product, so either for study or coding convinient, I prefer to implement some simple functions like provided in official Rx, I ...
1
vote
1answer
32 views
Reactive (Rx) build issue with .Net 4.5 and NuGet
This has caused me quit the embaressment today. While I was demoing Rx 2.x features and capabilities of Rx, I tried to build a NuGet enabled project which I copied from another computer.
Everything ...
0
votes
1answer
73 views
Realtime Plotting with WPF using External Data
I'm creating a real-time WPF graphical plotter that will plot data points as it is received. It utilizes the Dynamic Data Display library. (http://dynamicdatadisplay.codeplex.com/)
Currently, the ...
1
vote
2answers
56 views
Rx .Net TestScheduler- executing immediately scheduled events
When I do this:
testScheduler.Schedule("Hello world",(scheduler, state) => Console.WriteLine(state));
testScheduler.AdvanceTo(testScheduler.Now);
I hit this code in VirtualTimeSchedulerBase:
...
0
votes
1answer
70 views
Advisable to use rx distinct in long running process?
i am using rx distinct operator to filter external data stream based on a certain key within a long running process.
will this cause leak in the memory? Assuming a lot of different keys will be ...
-2
votes
3answers
64 views
Task.Continuewith equivalent in RX
I have a scenario to start a subscription once another subscription is completed. Both are sharing the same connected stream.
IConnectableObservable<List<int>> stream = GetMyHotStream();
...
1
vote
2answers
41 views
Swallowing IObservable exceptions
Is it possible to design an Rx operator that swallows repeated exceptions in the same sequence (not the same as Retry or Catch)? In essence the same as .Select(x => x) but ignoring exceptions along ...
0
votes
0answers
80 views
Reactive Extensions + Async vs Threading Performance
Wondering if this is implemented sufficiently and efficiently. Trying to get the most speed out of this I can but I feel that I have not implemented this as best as possible. Here is the code ...
0
votes
1answer
69 views
Trying to understand this use of SelectMany
I have a few questions about a use of SelectMany I have encountered in one of the projects I am working on. Below is a small sample that reproduces its use (with a few Console.WriteLines I was using ...
0
votes
1answer
52 views
New to Reactive Extensions (Rx), trying to run a CollectionView.Refresh() in a different thread. How?
I have a fairly large amount of data, and binding ListViews, DataGrids with CollectionView, and using OnFilter event to filter the CollectionView.
So when loading data for CollectionView and also ...
5
votes
1answer
119 views
ReactiveUI ObservableAsPropertyHelper / Reactive Extensions Memory Leak?
I noticed that in my .NET 3.5 application, which uses ReactiveUI, I have a significant memory leak that seems to originate in ObservableAsPropertyHelper. I created a test project to demonstrate it ...
0
votes
1answer
40 views
Reactive Extension databinding
I apologize for asking a n00b question, but I'm only just learning about Rx, and I'm unclear about a way it is supposed to be used.
I understand Rx is about observables and if I would like to ...
4
votes
1answer
104 views
Reactive Extensions: Concurrency within the subscriber
I'm trying to wrap my head around Reactive Extensions' support for concurrency and am having a hard time getting the results I'm after. So I may not get it just yet.
I have a source that emits data ...
1
vote
1answer
133 views
How to dynamically bind event to command in WinRT without Reactive framework?
I'm implementing modified version of Behavior for my Windows 8 app according to this guide. It works except one place where the Reactive framework is required:
protected override void OnAttached()
{
...
-1
votes
3answers
63 views
I need some explain on Rx behavior
When I use Reactive Extensions (Rx) with linq filter what happen under the hood?
Is this,
var move = Observable.FromEventPattern<MouseEventArgs>(frm, "MouseMove");
...
0
votes
1answer
48 views
RX syntax to wait until particular value is received, take that, and then unsubscribe?
I am waiting for a particular value in a stream, at which point, I want to do some work in my subscriber and also unsubscribe from the ongoing stream. What is the best syntax for doing that?
1
vote
2answers
99 views
Is Reactive Extensions 2.1 PCL compatible with Xamarin?
Riddle me this:
Can the new PCL version of Reactive Extensions be made to work with Xamarin?
If so, how?
3
votes
1answer
125 views
How can I use Reactive Extensions to throttle SearchPane.SuggestionsRequested?
Reactive Extensions allow me to "observe" a stream of events. For example, when the user is typing their search query in the Windows 8 Search Pane, SuggestionsRequested is raised over and over (for ...
1
vote
2answers
87 views
Hold timer type thread
im having difficulties figuring this out for myself hence asking here.
i have an application which installs a client on a remote machine
and the client reports back through a socket.
im trying to ...
0
votes
1answer
80 views
Why does Subject<T>.Dispose does not dispose current suscriptions?
Hi I've been thinking for some time that Subject<T> disposes all the subscriptions based on it if you manually call its Dispose method. But I've recently found it doesn't work that way, it just ...
1
vote
1answer
101 views
BlockingCollection vs Subject for use as a consumer
I'm trying to implement a consumer in C#. There are many publishers which could be executing concurrently. I've created three examples, one with Rx and subject, one with BlockingCollection and a third ...
1
vote
1answer
45 views
Resubscribe IObservable after merge
I have an IObservable that is initially listening to one source:
_itemsChanged = Observable.Merge(item1.ObserveItemChanged);
_itemsChanged.Subscribe(_ => Console.WriteLine("item changed"));
As ...
0
votes
2answers
54 views
Reactive Extensions Group By, Unique BufferWindow till time span with cancellation
I have a Hot stream of events coming of following type -
Event
{
string name;
int state ; // its 1 or 2 ie active or unactive
}
there is a function which provides parent name of given name - string ...
4
votes
3answers
59 views
Convert IObservable<Timestamped<T>> to IObservable<TimeInterval<T>>
How can I convert an observable sequence of Timestamped<T> to a sequence of TimeInterval<T>where the interval is the time between the timestamps on the original sequence?
Given the input ...
0
votes
4answers
125 views
Performance penalty with 1000s of running Timer objects?
Is there any performance considerations to having thousands of running Timer objects (spawned behind the scenes by calls to Reactive RX's Observable.Interval extension method)? This would be for a ...
4
votes
2answers
70 views
Event for Window Handle Click
I'm trying to jump through some hoops at the moment in dealing with WPF's SizeChanged event on a Window. I have some custom code that I need executed after a user completes resizing the window, ...
2
votes
3answers
80 views
Using Subject to decouple Observable subscription and initialisation
I have an API which exposes an IObservable Status. But this status depends on an underlying observable source which has to be initialised via Init.
What I'd like to do is protect the users from ...
0
votes
2answers
51 views
Use Reactive Extensions to harmonize & simplify Control.Enabled = true/false conditions?
Is it possible, or more precisely how is it possible to use RX.Net to listen to a number and different variety of (WinForms) controls' .TextChanged/.RowsChanged/.SelectionChanged events and whenever ...
2
votes
1answer
65 views
RX ObserveOn issue
I am new to RX and playing around with some samples, any ideas as to why the Console.writeLine in the Subscribe is not being invoked?
var obs = Observable.Create(i =>
{
...
0
votes
2answers
62 views
Reactive extensions dispose event handler
Hi guys I have a ExternalDataService that is constantly firing real time data, it is contained in a lib.
I have a wrapper class that subscribes and puts the updates on a Observable..
public ...
0
votes
3answers
109 views
Rx Subscribe issue, how to update data in UI control in winform
I would like to do a little project to do some calculation and add the calculated results in listbox.
My code:
int SumLoop(int lowLimit, int highLimit)
{
int idx;
...
0
votes
2answers
66 views
Wrapping event with Reactive Extensions when there are Start and Stop methods
I'm attempting to wrap a device class with an IObservable. Without Rx its used like this:
device.IncomingData += data => { /* do something with float[] data */ };
device.Start(500);
// ...
0
votes
2answers
70 views
Reactive.NET Conditional Throttle
Is there a way to have conditional throttle.
I have a class which has an event with 2 parameters (control sender, string text).I would like to use this event in my Rx code, and use throttling. The ...




