Is there a way to subscribe an observer as async
问题 Given a synchronous observer, is there a way to do this: observable.SubscribeAsync(observer); And have all methods on the observer called asynchronously or is that something I have to handle when creating the observer? 回答1: You might want to look into ObserveOn and SubscribeOn (more information and even more information). 回答2: If you need to call an async method when the stream spits out a new value, the most common solution you will find is to use SelectMany . The problem is that this doesn