system.reactive
Alternative to Rx (Reactive Extensions) for .net 3.5
I\'m working on a .net 3.5 app and I\'d like to know if there is a workaround or other software that can provide similar functionality to IObservable and es开发者_高级运维pecially Observable.FromEvent[详细]
2023-03-16 13:28 分类:问答What does Action<Action> mean?
I just saw a brand-new video on the Rx framework, and one particular signature caught my eye: Scheduler.schedule(this IScheduler, Action<Action>)[详细]
2023-03-16 12:22 分类:问答Async Queue Processing With Reactive Extensions
There are a couple of articles on this, and I have this working...but I want to know how to set a max number of Task threads 开发者_JAVA百科for my Observable subscriptions at once.[详细]
2023-03-16 07:16 分类:问答Rx ForkJoin is not working with custom event
I have some custom event args: AutoOccurPerformedEventArgs : EventArgs and the same event with these event args is raised in 2 seperate locations I\'m trying to use the Reactive Extensions to fork[详细]
2023-03-15 18:21 分类:问答Rx for .NET - What happened to Scheduler.Dispatcher?
I\'m trying to work through Dan Sullivan\'s Rx Extensions training course on PluralSight.It\'s excellent stuff but unfortunately Rx seems to have already been changed, even though the course was only[详细]
2023-03-15 05:57 分类:问答Subject<T> stops publishing items
I have a Subject<T> that I\'m publishing items into via OnNext and after a while, under load, I get this exception:[详细]
2023-03-15 05:53 分类:问答When to use Observable.FromEventPattern rather than Observable.FromEvent?
We\'ve got a client calling off to a TIBCO EMS queue and are wiring up the events like this: var msgConsumer = _session.CreateConsumer(responseQueue);[详细]
2023-03-14 21:59 分类:问答Using Reactive Extensions to create a single event?
I\'m trying to get my head around .NET Reactive Extensions, and I wonder if they can be used in the follow scenario:[详细]
2023-03-14 10:40 分类:问答How can I observe values in a non blocking way using Rx?
I\'m trying to observe on a timer which its handler is longer then the interval. in order to do so I want to schedule the observation on some kind of threadPool, task pool or something.[详细]
2023-03-14 01:58 分类:问答Nice Rx way of subscribing to a collection within a collection
I\'ll describe my object model, then what I want to do. It is a Silverlight application, and these are model objects that are bound to UI elements.[详细]
2023-03-14 00:31 分类:问答