system.reactive
Merging two observable collection and binding to the Listbox using Rx
I need to merge 2 ObservableCollection into one and bind it to the Grid and need realtime updates to flow to the Grid. for .e.g.[详细]
2023-03-31 00:03 分类:问答Rx Let function
Ive been investiging the Rx library and have tried to replicate the example from the following video...[详细]
2023-03-30 22:19 分类:问答Catching exceptions which may be thrown from a Subscription OnNext Action
I\'m somewhat new to Rx.NET.Is it possible to catch an exception which may be thrown by any of the subscribers?Take the following...[详细]
2023-03-30 21:39 分类:问答Is Rx extensions suitable for reading a file and store to database
I have a really long Excel file wich I read using EPPlus. For each line I test if it meets certain criteria and if so I add the line (an object representing the line) to a collection. When the file is[详细]
2023-03-30 07:43 分类:问答merge multiple observables to an observable array
Hi I am trying to merge a number of observables to an observable array. Here an example that works in fsi. (sorry that it is lengthy)[详细]
2023-03-28 20:35 分类:问答Create an observable wrapper for a non thread safe class
I have a class, public class Test { public int Calc(); } which requires all calls to Calc to be performed on the same thread as the one on which Test was created. I need to create Test once (expen[详细]
2023-03-28 20:03 分类:问答How to unhide Silverlight WCF BeginXXXX and EndXXXX service calls
I have been learning about RX and Silverlight and found a blog post showing how to implement a silverlight wcf service using the Observable.FromAsyncPattern in Rx. In the blog post it has a note to Si[详细]
2023-03-27 02:24 分类:问答How do you buffer items into groups in Reactive Extensions?
I have an IObservable; where a property change has an entity ID and PropertyName.I want to use this to update a database, but if multiple properties change almost simultaneously I only want to do one[详细]
2023-03-26 11:55 分类:问答Is the an extension methods in .net Reactive extensions for Action<T>
I have two asynchronouse methods which take Action callbacks开发者_Go百科. I was wondering if there is an extension in Rx for actions?[详细]
2023-03-26 05:18 分类:问答Using reactive to resubscribe each time another event occurs
I want to subscribe to an observable, but only run an action once until a different IObservable fires. Each time the other IObservable fires, I\'d like to be resubscribed and run my action once. The f[详细]
2023-03-26 01:02 分类:问答