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
I just saw a brand-new video on the Rx framework, and one particular signature caught my eye: Scheduler.schedule(this IScheduler, Action<Action>)
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.
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
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
I have a Subject<T> that I\'m publishing items into via OnNext and after a while, under load, I get this exception:
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);
I\'m trying to get my head around .NET Reactive Extensions, and I wonder if they can be used in the follow scenario:
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.
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.