Is there a reason for `Deferred<T>` not to h...
# coroutines
r
Is there a reason for
Deferred<T>
not to have blocking variant of
.await()
? Is it okay to do
deferred.asCompletableFuture().join()
if it's needed anyway?