<@U2E974ELT> What I mean to say is — the async RPC...
# coroutines
e
@elizarov What I mean to say is — the async RPC calls return “immediately”(once queued up on the network). returning….. ListenableFuture<XXX> from guava… which supports adding a callback on complete — that could somehow invoke the continuation? (this is where my newbness comes in). I could see converting the ListenableFuture into a CompletableFuture… and then add a suspending method to completable future.. seems like it could be done more cleanly…