interrupting a blocked thread is not supported out...
# coroutines
e
interrupting a blocked thread is not supported out-of-the box if that is what you want, but you can write your own
awaitInterruptible
that would do
future.cancel(true)
on cancellation.