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 ...
5
votes
1answer
59 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
25 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
64 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
0answers
34 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()
{
...
0
votes
2answers
44 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
33 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
51 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?
2
votes
1answer
76 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
82 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
68 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
74 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
41 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
39 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
56 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
113 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
60 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
61 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
39 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
49 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
55 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
102 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
56 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
63 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 ...
1
vote
1answer
55 views
Reactive, long-running sequences and persistence in the cloud
I am to build a kind of website tracking system.
Think of a website where users click on various links – a unique user id and an identifier of the page tracks all page views.
Now, a single user ...
0
votes
1answer
44 views
How to buffer/throttle element drag events with RxJS (Reactive Extensions for JavaScript)
I'd like to implement a scenario when certain things happen on a continuous source of events (dragging an element) - but with some buffering/throttling. I'd like to receive a notification let's say
...
0
votes
3answers
52 views
Reactive Extensions: When and why to use the Notification class?
I am trying to understand when and why to use the Notification class. I see it is related to ToNotifier and FromNotifier, but not sure entirely of their use.
Is it for creating a two way like binding ...
0
votes
3answers
54 views
Subscription on observable not reaching to oncompleted
I am trying to create an observable wrapper for wcf call and I created as bellow.
The method is like this,
private IObservable<List<string>> Search(string searchTerm)
{
...
0
votes
1answer
50 views
Basic RX TestScheduler timing
I'm using RX to do some (pretty basic) event subscription: -
public void StartListening(IObservable<Item> observable)
{
subscription = observable
.Buffer(TimeSpan.FromSeconds(5))
...
0
votes
3answers
62 views
mocking NewThreadScheduler.Default
I have a code
var i = 0;
_searchService.FindAll().SubscribeOn(NewThreadScheduler.Default).Subscribe(i =>
{
i++
...
1
vote
1answer
50 views
Reactive Extensions buffering subscriptions
I am fairly new to Rx and am having trouble finding a solution to my problem. I am using Rx to commence a download through a client library. Currently it looks like:
private void DownloadStuff(string ...
3
votes
1answer
64 views
waiting IObservable to get all elements error
I have this class:
public class TestService
{
public IObservable<int> GetObservable(int max)
{
var subject = new Subject<int>();
Task.Factory.StartNew(() =>
...
0
votes
1answer
24 views
How to tell whether an Observable is “awaiting” another with RxJS (for Ajax request indicator, for example)
While learning RxJS, I'm wondering:
How to create an Observable that tells whether Observable X has had value after Observable Y?
Example need would be to tell whether there is an Ajax request ...
2
votes
2answers
66 views
Is there any difference between packages Rx-WPF and Rx-Xaml?
If I add the RX-main package to a WPF application I get the following dependent packages installed:
Rx-Interfaces
Rx-Core
Rx-Linq
Rx-PlatformServices
Rx-Main
After adding Rx-main there are two ...
1
vote
1answer
54 views
Combining IObservable<IObservable<T>> into IList<T>
I have incoming connections exposed as:
IObservable<double>
Every time a new connection is made I notify it via:
IObservable<IObservable<double>> m_IncomingConnections;
My ...
1
vote
1answer
53 views
Combining two streams of numbers using linq or rx
I was playing around with linq/rx and wanted to do something simple, create a stream that listens to two different streams of numbers and when either number stream gets a new value, output the sums.
...
0
votes
1answer
68 views
Managing Shared Unsubscribing in SignalR and Rx
In our client application, we send and receive realtime events through SignalR.Client. Subscribing to events from the server is done through SignalR. In most cases, a subscribe event is sent to the ...
1
vote
1answer
46 views
Continue using subscription after exception
I was trying out a "type-to-search" Reactive-Extensions sample which takes a string from a textbox (WPF app if it matters) and does a potentially-lengthy server-side search (simulated in my case with ...
5
votes
2answers
1k views
I/O performance - async vs TPL vs Dataflow vs RX
I have a piece of C# 5.0 code that generates a ton of network and disk I/O. I need to run multiple copies of this code in parallel. Which of the following technologies is likely to give me the best ...
3
votes
1answer
66 views
Markup extension in XAML for binding to ISubject<string>
If I have the following view model
class Foo : INotifyPropertyChanged {
ISubject<string> Name { ... }
}
and some imagined XAML code
<TextBox Text="{my:Subscribe Path=Name}/>
I ...
0
votes
1answer
62 views
Catch exception (ping pong reactive sample)
I'm starting with the reactive framework.. Based on example:
http://rxwiki.wikidot.com/101samples (Ping Pong)
I did a similar implementation in my application.. I could not and did not know how to ...
1
vote
1answer
72 views
Building an Observable Repository with Rx
I'm working in the common scenario whereby I'd like to access a subset of a repository and not worry about having to keep it updated e.g. 'get all orders whose price is greater than 10'. I have ...
0
votes
2answers
69 views
How to implement Switch for IObservable<IObserver<T>> for reactive extensions in C#
In reactive extensions we have
IObservable<T> Switch(this IObservable<IObservable<T>> This)
I would like an implementation of
IObserver<T> Switch(this ...
1
vote
1answer
50 views
Notification timestamp & IsStarted from a ReplaySubject
On Subscription, my ReplaySubject subcriber would like to know when the replay history has finished and it becomes a 'live' subscription. Furthermore, said subscriber would also like to receive the ...
4
votes
2answers
114 views
Where should Rx be used? [duplicate]
I'm thinking about bringing in Rx to my workplace but the more I learn about it the more I think it doesn't really give you an advantage.
We have a lot of server apps that take input data at one end ...
1
vote
2answers
137 views
Reactive Extensions: The trouble with Where()
I love Rx, but I have a problem I keep running into.
Let's say we have a single upstream IObservable<Foo>, and N downsteam sequences attached to it, where each is only interested in those Foos ...
3
votes
2answers
129 views
Why cannot IObservable<T> be used without Reactive(Rx) extension for .NET?
Attempting to understand why and when I would need to use Reactive Extension (Rx) for .NET, I came to question "C# 5.0 async/await feature and Rx - Reactive Extensions" the reading of which with its ...
0
votes
2answers
110 views
A code example illustrating the difference between the paradigms of async/await and Reactive (Rx) extension?
Both the System.Reactive extension for .NET and new C# 5.0 (.NET 4.5) async/await pursue (or based on) future and promises constructs paradigm (approach).
Can you give the (*) simplest C# code ...
0
votes
1answer
77 views
Reactive Extensions vs Event Aggregator
I am new to Reactive Extensions. I understand that Rx observes for any changes (at runtime) to the underlying object and notifies when changed to the subscribers.
Consider the Rx for events, which ...
0
votes
2answers
69 views
Does Subject.Subscribe only work in a static instance (or am I missing something)
I'm mucking about with reactive extensions and Iv'e hit a snag that I can't for the life of me work out what the cause is.
If I use a .NET 4 console mode app, where everything is static as follows:
...
2
votes
1answer
43 views
Thread scheduler that can batch file operations on the same drive to the same thread?
I'd like to use the Rx extensions to handle the parallelizing of long, file-bound operations.
The workflow is something along these lines:
search for a given file pattern on several drives (let's ...


