I'm wrapping a callback using Flowable.create, how...
# rx
t
I'm wrapping a callback using Flowable.create, however there's no value to emit, it's just
onSuccess()
with no param. What's the best way to use the
emitter
in this case?
emitter.onComplete()
or
emitter.onNext(  [... what would I pass here? ... ])
?