Tag Archives: rx

Rx – System Time and Scheduler issues

I recently had an issue with time-dependent methods of Rx, which were adversely affected when a user changed their system clock.  You can read up on the history on the Rx forums. In the older Rx v1.0.2787 (which my current … Continue reading

Posted in Bugs | Tagged , | Leave a comment

Avoiding memory leaks with easier disposal

One of the biggest causes of memory leaks in .NET applications (or any application), are event handlers remaining active beyond the lifetime of the parent object.  Your object goes out of scope, but continues to listen for events on other … Continue reading

Posted in Development | Tagged , | Leave a comment