System.
i am trying to implement a standard drag and drop image in wpf using Rx. var mouseDown = from evt in …
wpf lambda system.reactiveI have an ObservableCollection that I need to reference for a specific item. If the item is not there, I …
c# linq observablecollection system.reactiveI 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-dataflowI 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 synchronizationcontextLet's say, we have a class: public class Foo { public string Do(int param) { } } I'd like to create an observable …
c# system.reactiveThis might seem like a silly question, but I downloaded the Reactive Extensions for .NET from here: http://msdn.microsoft.…
c# system.reactiveI understand the IObservable<T> & IObserver<T> are implementations of the observer pattern and can …
wpf data-binding binding inotifypropertychanged system.reactiveWhat 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-programmingConsider 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-javaUsing Reactive Extensions, I want to ignore messages coming from my event stream that occur while my Subscribe method is …
c# system.reactive