system.reactive
Multiple SelectMany in Rx
I have an interface like this: interface IProcessor{ IObservable<Item> Process(Item item); } I have an array of workers:[详细]
2023-04-08 08:45 分类:问答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 see[详细]
2023-04-07 23:39 分类:问答Implementing Observers and Subjects using IObserver/IObservable
I want to create a class that can be used to represent a dynamically computed value, and another class that represents a value can be the source (subject) for these dynamically computed values. The go[详细]
2023-04-07 18:16 分类:问答Will you create a service for Rx.Observable?
I have the following code in VM.. Observable .Timer(remainingTimeSpanForNextHour, TimeSpan.FromHours(1))[详细]
2023-04-07 15:37 分类:问答Time-varying values in Rx
I have two observables. One i开发者_开发技巧s from Observable.fromEvent(..), where the underlying event is the user checking a Winforms checkbox. The other is Observable.Interval(..) which I subscribe[详细]
2023-04-07 07:30 分类:问答new data to observable with each method invocation
this may be really simple to those in the know-how, but how can i directly provide new data to a given observable, whenever a method of mine is invoked?[详细]
2023-04-06 16:14 分类:问答How can I prevent mousemove events while mouse button is pressed?
I got a grid that I want to move mouse over. While I am just hovering and moving mouse I want events to fire, but when I press mousedown they sh开发者_JS百科ould pause firing. Once I fire mouseup they[详细]
2023-04-06 11:50 分类:问答Reactive Extensions... Examples in CRUD application
I am just coming to grips with Reactive Extensions but still haven\'t had that \"A-Ha\" moment, the moment when it all seems to fit into place. As a result of this, I need some help and want to know w[详细]
2023-04-06 11:31 分类:问答Reactive Extensions (Rx) in windows Phone Mango [closed]
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a[详细]
2023-04-05 19:45 分类:问答Will FromAsyncPattern dispose of resources no longer used?
Will FromAsyncPattern close my webresponse: var o = Observable.Return(HttpWebRequest.Create(\"http://foo.com\"))[详细]
2023-04-05 13:30 分类:问答