<@U3RPXCHUJ>: you can run a blocking code in a fut...
# coroutines
e
@wfisher: you can run a blocking code in a future using
CompletableFuture.supplyAsync
and then
await
on it from a coroutine, for example,
await
is cancellable.