c# Programming Glossary: system.reactive
How to expose IObservable<T> properties without using Subject<T> backing field http://stackoverflow.com/questions/12053709/how-to-expose-iobservablet-properties-without-using-subjectt-backing-field as a way of getting this just happened notifications. c# system.reactive share improve this question For one thing someone can cast..
.NET, event every minute (on the minute). Is a timer the best option? http://stackoverflow.com/questions/1329900/net-event-every-minute-on-the-minute-is-a-timer-the-best-option problem. Have any of you a better way to do this c# timer system.reactive share improve this question How about int startin 60 DateTime.Now.Second..
How to organize sequence of data processors with .net RX http://stackoverflow.com/questions/13310865/how-to-organize-sequence-of-data-processors-with-net-rx in Reactive Extensions without stopping sequence c# .net system.reactive share improve this question This seems like you need a workflow..
Good introduction to the .NET Reactive Framework [closed] http://stackoverflow.com/questions/1596158/good-introduction-to-the-net-reactive-framework coding techniques c# .net documentation asynchronous system.reactive share improve this question Here's a wiki site with lots..
Write an Rx “RetryAfter” extension method http://stackoverflow.com/questions/18978523/write-an-rx-retryafter-extension-method I can't figure out how to write this method. c# system.reactive share improve this question The key to this implementation..
Good example of Reactive Extensions Use [closed] http://stackoverflow.com/questions/2550763/good-example-of-reactive-extensions-use better solution than what we have today in .NET c# .net system.reactive share improve this question For a bunch of good examples..
How to throttle event stream using RX? http://stackoverflow.com/questions/3211134/how-to-throttle-event-stream-using-rx 100 generated at 41 44.165 observed at 41 44.602 c# system.reactive share improve this question Here's is what I got with some..
Reactive Extensions for .NET (Rx): Take action once all events are completed http://stackoverflow.com/questions/3867858/reactive-extensions-for-net-rx-take-action-once-all-events-are-completed seq.Subscribe unused this.resultTextBox.Text Done c# .net system.reactive share improve this question You can use Observable.When..
Rx IObservable buffering to smooth out bursts of events http://stackoverflow.com/questions/4505529/rx-iobservable-buffering-to-smooth-out-bursts-of-events AnonymousObservable is not publicly accessible outside the system.reactive code so I had to copy and paste a lot of code. This solution.. to build seems like a fairly standard one. c# buffering system.reactive iobservable share improve this question This is actually..
Using Rx Framework for async calls using the void AsyncMethod(Action<T> callback) pattern http://stackoverflow.com/questions/5827178/using-rx-framework-for-async-calls-using-the-void-asyncmethodactiont-callback something that returns an IObservable c# asynchronous system.reactive share improve this question Func IObservable TRet FromListCallbackPattern..
Does reactive extensions support rolling buffers? http://stackoverflow.com/questions/7597773/does-reactive-extensions-support-rolling-buffers this in Rx Can anyone confirm deny this c# .net buffer system.reactive sliding window share improve this question I wrote an extension..
|