Hi!
I'm implementing IObserver.
Are there any conventions about throwing exceptions from IObserver?
Can OnNext or any other method of my implementation throw exceptions?
What should happen if exception is thrown in OnNext or OnCompleted - should I catch all exceptions and call this.OnError(ex)?
What will happen if OnError throws?