AsyncAwait icon indicating copy to clipboard operation
AsyncAwait copied to clipboard

Ability to cancel individual AsyncControllers

Open jlnstrk opened this issue 7 years ago • 1 comments

I'd like to suggest having the ability to cancel AsyncControllers individually

jlnstrk avatar Aug 07 '17 15:08 jlnstrk

You can cancel an individual AsyncController if you create it with an identifier.

val key = "key"
key.async { ... }
...
//to cancel 
key.async.cancelAll()

tonilopezmr avatar Dec 13 '17 14:12 tonilopezmr