is there a `Completable#blockingAwait()` operator?
# reaktive
s
is there a
Completable#blockingAwait()
operator?
a
Not currently. Please use
completable.asSingle(Unit).blockingGet()
s
Got it, thank you!