<@U181YPG59> You need the `kotlinx-coroutines-jdk8...
# coroutines
d
@gregschlom You need the
kotlinx-coroutines-jdk8
artifact, then you will be able to
.await()
on a
CompleteableFuture
. As for a normal `Future`: The
Future
API does not have a non-blocking "callback-style" API, the only way to wait for a plain
Future
is a blocking call to
get
.