RxSwift zip operator when one observable can fail

Recently I ran into a situation where I had to make two independent API requests and one of the API requests was discardable. I was sure that Observable.zip was the way to go. So i went ahead and implemented, My code looked something like this This was apparently very easy to implement and worked well … Read more