AsyncAwait
AsyncAwait copied to clipboard
Ability to cancel individual AsyncControllers
I'd like to suggest having the ability to cancel AsyncControllers individually
You can cancel an individual AsyncController if you create it with an identifier.
val key = "key"
key.async { ... }
...
//to cancel
key.async.cancelAll()