ossama
01/26/2020, 3:53 PMtoObservable() on my completable, but nothing is emitted in onNext. The doc of the method Completable.toObservable() says:
Returns an Observable which when subscribed to subscribes to this Completable and relays the terminal events to the subscriber.
I am using something like this
Completable.complete()
.toObservable<Any>()
.subscribe { }Zach Klippenstein (he/him) [MOD]
01/26/2020, 4:29 PMandThenossama
01/26/2020, 4:54 PM