system.reactive
Threading.Tasks analog in Rx extensions in .NET 3.5?
Is it possible to use Reactive开发者_运维百科 Extensions (Rx) to create applications in .NET 3.5 that perform parallelization or is it limited in some way? I downloaded Rx from here http://www.microso[详细]
2023-03-25 10:38 分类:问答Why does IObservable<T>.First() block?
I\'ve been trying to get my head around the Reactive Extensions for .NET of late, but have hit a bit of a conceptual wall: I can\'t work out why IObservable.First() blocks.[详细]
2023-03-25 02:33 分类:问答Managing async service calls using Silverlight and Reactive Extensions
So I\'m reading up on Rx and having a difficult time grokking it. I have a Silverlight app that needs to make say 6 calls to a specific service asynchronously. In the old days, we\'d handle this by ma[详细]
2023-03-22 12:46 分类:问答Is Rx under 3.5SP1 forward-compatible with Rx and TPL under 4.0?
I want to begin enabling our C# .NET 3.5SP1 project\'s code with asynchrony. My primary use case is to invoke WCF services asynchronously.[详细]
2023-03-22 12:29 分类:问答How to combine n observables dynamically into a list?
I have a collection of observables that generate state changes for a so-called Channel. And I have a ChannelSet that should monitor those channels.[详细]
2023-03-22 11:25 分类:问答Can IObservable.Catch continue with the same observable
Suppose a have an IObservable: IObservable<long> obs = ...; Can I do the following to guarantee that the observable will never ever stop?[详细]
2023-03-22 08:53 分类:问答Where is Observable.Iterate() in Rx 1.0.10621.0/1.1.10621.0
I\'m finding a few examples online of Reactive Extensions that require the use of Observable.Iterate(), but the package from NuGet, Rx version 1.0.10621.0 does not seem to include it.Unless I\'m doing[详细]
2023-03-22 05:49 分类:问答Why does TakeLast<T>() method not work on a ReplaySubject<T>
According the the MSDN documentation, the following code should output \'5\' to the console window.Instead, nothing is displayed.[详细]
2023-03-22 02:59 分类:问答How to get the latest value from a ReplaySubject<T> before completion
I need a way of grabbing the most recent item added to a ReplaySubject that matches certain criteria. The sample code below does what I need it to do but it doesn\'t feel like the correct approach:[详细]
2023-03-21 22:09 分类:问答How to cancel an observable sequence
I have a very simple IObservable<int> that acts as a pulse generator every 500ms: var pulses = Observable.GenerateWithTime(0, i => true, i => i + 1, i => i,[详细]
2023-03-21 09:12 分类:问答