system.reactive
Is there an equivalent of the Task.ContinueWith operator in Rx?
Is there an equivalent of the Task.ContinueWith operator in Rx? I\'m using Rx with Silverlight,I am making two webservice calls with the FromAsyncPattern method, and I\'d like to do them synchronousl[详细]
2023-03-21 05:31 分类:问答Rx Extensions: How do I make a subscription dependent on another subscription?
I have a class that takes an observable in its constructor, then subscribes to it and does some stuff, sets properties etc.The class itself is observable.[详细]
2023-03-20 15:25 分类:问答Silverlight Task.WaitAll using Rx
I\'d like to call two webservices simultaneously and process the responses when both are done.I am calling the webservices using Rx’s Observable.FromAsyncPattern method.What is the correct method to[详细]
2023-03-19 14:50 分类:问答How to select increasing subsequence of values from IObservable<T>
How to write this method? public static IObservable<T> Increas开发者_JAVA百科ingSubsequence<T>(this IObservable<T> observable, IComparer<T> comparer)[详细]
2023-03-19 10:31 分类:问答noob question - Watching result of 2 Async methods that return Action<T>
I have the following 2 Async methods that use Ac开发者_如何学编程tion callbacks public interface IGeoCoordinateService[详细]
2023-03-19 01:55 分类:问答CombineLatest, but only push for the left
I need to implement a version of CombineLatest (I\'ll call it WithLatest here) that calls the selector for every item on the left and the latest item on the right. It shouldn\'t push for items on the[详细]
2023-03-18 22:25 分类:问答Rx ForkJoin Missing
I just downloaded the stable release of Reactive Extensions for .NET and am looking at the 101 Rx examples. The parallel execution example uses the ForkJoin method. This method is not in the stable开发[详细]
2023-03-17 05:21 分类:问答What happened to the Rx Switch() operator?
I am working my way through the Hands-On-Labs for reactive extensions (Rx HOL .NET.pdf) which I downloaded from the data developer center (here) a few days ago.[详细]
2023-03-16 23:52 分类:问答Reactive in VB.net
Can anyone help me please! I tried to implement something that in C# is: var keysIO =Observable.FromEvent<KeyDownEventHandler, RoutedEventArgs>([详细]
2023-03-16 20:58 分类:问答Using Rx for context menu actions
I thought I\'d experiment with the new System.Reactive bits to see if it would simplify performing an action on response to a context menu click on an item in a ListView.[详细]
2023-03-16 19:55 分类:问答