Top "System.reactive" questions

System.

Error Cannot convert lambda expression in subscribe for an IObservable<Point>

i am trying to implement a standard drag and drop image in wpf using Rx. var mouseDown = from evt in …

wpf lambda system.reactive
Using Rx (Reactive Extensions) to watch for specific item in ObservableCollection

I have an ObservableCollection that I need to reference for a specific item. If the item is not there, I …

c# linq observablecollection system.reactive
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 …

task-parallel-library system.reactive async-await conceptual tpl-dataflow
How to get a WinForm synchronization context or schedule on a WinForm thread

I have a winform application, and an observable set up like this: Form form = new Form(); Label lb = new Label(); …

winforms .net-4.0 system.reactive synchronizationcontext
What is a good way to create an IObservable for a method?

Let's say, we have a class: public class Foo { public string Do(int param) { } } I'd like to create an observable …

c# system.reactive
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.…

c# system.reactive
IObservable<T> and INotifyPropertyChanged - is there a connection

I understand the IObservable<T> & IObserver<T> are implementations of the observer pattern and can …

wpf data-binding binding inotifypropertychanged system.reactive
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 …

linq events system.reactive reactive-programming
How to handle exceptions thrown by observer's onNext in RxJava?

Consider the following example: Observable.range(1, 10).subscribe(i -> { System.out.println(i); if (i == 5) { throw new RuntimeException("oops!"); } }, …

java system.reactive reactive-programming rx-java
With Rx, how do I ignore all-except-the-latest value when my Subscribe method is running

Using Reactive Extensions, I want to ignore messages coming from my event stream that occur while my Subscribe method is …

c# system.reactive