system.reactive
how to do Rx Observable on Silverlight Webclient
I would like t开发者_如何学Co use Rx in my SL app. I want to set up an observable on my REST requests to my webserver. I dont see how to wire up Observable.FromEvent or Observable.FromAsync. My best g[详细]
2023-04-05 10:21 分类:问答ConnectableObservable Dispose all the subscribed methods at once?
so i have a game server every player has a开发者_如何学编程 timer so like: this.player.Timer = from tick in TimerPublisher where tick % 1 == 0 select tick;[详细]
2023-04-05 03:31 分类:问答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();[详细]
2023-04-04 16:13 分类:问答Problem with Reactive Extension Observers
I was working on an app using Reactive Extensions and got into the following problem: say i have two observers P and Q, i want to build a third observer R that if two values of P comes without a Q, R[详细]
2023-04-04 13:22 分类:问答What Features are missing from Rx that are in CEP Platforms?
What Features are missing from Rx that are in CEP Platforms such 开发者_开发百科as NEsper or MS StreamInsight? CEP Platforms like StreamInsight are an enterprise-grade solution for processing lots of[详细]
2023-04-04 01:32 分类:问答Understood using Rx Extensions but what is PUSH model in this?
This is my code which monitors mouse moves after mouseleftbuttondown and till mouseleftbuttonup: var downs = Observable.FromEventPattern<MouseEventArgs>(this, \"MouseLeftButtonDown\");[详细]
2023-04-03 21:07 分类:问答Why isn't this code behaving asynchronous
As I understand Subscribe method should be asynchronous whereas Run is synchronous. But this piece of code is working in synchronous manner. Can anybody fix it?[详细]
2023-04-03 06:51 分类:问答using Reactive Extensions to monitor IEnumerable
I\'m connecting to an object that asyncronously loads开发者_如何学JAVA a collection of objects into an IEnumerable.At the time I connect, the IEnumerable may have items already in it\'s collection, an[详细]
2023-04-01 03:53 分类:问答Difference between cold observable in RX and normal Enumerable
I am new to Rx. I can see some real benefits of using Hot Observables, however I was recently asked the question on what the diff开发者_开发技巧erence was between a cold observable and an equivalent e[详细]
2023-03-31 08:50 分类:问答Using Rx to queue operations I don't want executed until particular time?
Summary: I have a web app that executes workflows on business objects and sometimes needs to deliberately wait several seconds or minutes between steps. I\'m looking to (perhaps via Rx.NET), improve t[详细]
2023-03-31 07:10 分类:问答