Reactive Extensions Subscribe calling await
问题 I want to perform an async call based for each event raised by a Reactive Extensions Observable. I'm also trying to keep everything synchronized as I want the async call to finish before the next event is handled. How would one go about doing something similar to the following? I say similar as the code below does not compile. settingsChangedInMemory .Subscribe(async _ => { var settings = Extract(); await SaveSettings(settings); }); I'm not sure if it changes anything, but I would need to