Difference between Observable.defer and Observable.create in java rx
So the distinction seems to be: defer is good when you have something that creates/returns an observable already, but you don’t want that process to happen until subscription. create is good when you need to manually wrap an async process and create an observable. That creation is also deferred until subscription. To put it another … Read more