Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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).

share|improve this question
I had a similar problem a while back and asked this question about it. I think the responses (including the comments) there would answer your question. Also, this post helped my understanding. But to summarize, SubscribeOn sets which thread the actual subscribing happens on, whereas ObserveOn determines which thread the OnNext calls get executed on, so you should use ObserveOn. – Boris Sep 28 '11 at 11:18
SubscribeOn solves a problem in which adding event handlers from multiple threads in Winforms or WPF will cause exceptions. – Boris Sep 28 '11 at 11:25

1 Answer

up vote 17 down vote accepted

I had a similar problem a while back and asked this question about it. I think the responses (including the comments) there will answer your question. To summarize:

  • If you want to update controls on a gui thread, use ObserveOn. If you reference System.Reactive.Windows.Forms.dll you get the .ObserveOn(form) which is handy.
  • SubscribeOn controls the thread on which the actual call to subscribe happens. The problem solved here is that WinForms and WPF will throw exceptions if you add event handlers from multiple different threads.

Also, this post was very helpful in figuring out the relationship between ObserveOn and SubscribeOn.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.