Reactive Extension SerialDisposable gottcha
MSDN defines SerialDisposable as “a disposable whose underlying disposable can be swapped for another disposable which causes the previous underlying disposable to be disposed.”, but it does not state...
View ArticleTrampoline and Reactive Extensions
Try executing the below code snippet and soon it will throw a stackoverflow exception private void CallMe() { Console.WriteLine(“Hello World”); CallMe(); } The reason you get a stackoverflow...
View ArticleRxSandbox – Nice way to revise/learn the ever changing Rx operators
I picked up learning RX 4 months back, and during this short time a few Rx apis were made obsolete, while others were re-christened with entirely new set of parameters. If you like to quickly recall...
View ArticleWPF Textbox with hints
I created below text box with the help of WPF Adorner and Reactive Extension, I wanted to create a text box that gives hint as you type analogous to bloomberg-terminal/search-boxes. Used Rx to throttle...
View ArticleTalk on Reactive Extension and Reactive UI
This is a good talk on Reactive Extension and Reactive UI by Paul Betts (he is the author of Reactive UI, a MVVM framework which uses Reactive Extension at it’s core)
View Article