I just discovered SubscribeOn, which makes me wonder if I should be using that instead of ObserveOn. Google took me here and here, but neither have helped me grok the difference: it seems incredibly subtle.
(In my context, I've got events 'coming up' on a non-gui thread, and I need to switch over to a gui thread before using the event data to update controls).

SubscribeOnsets which thread the actual subscribing happens on, whereasObserveOndetermines which thread theOnNextcalls get executed on, so you should useObserveOn. – Boris Sep 28 '11 at 11:18SubscribeOnsolves a problem in which adding event handlers from multiple threads in Winforms or WPF will cause exceptions. – Boris Sep 28 '11 at 11:25