You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Canceller feature (removal of progress/then handlers) #31
let task = ...
var canceller: Canceller? = nil
task.progress(&canceller) { ... }.then { ... }
// at some point before `task` completes
canceller?.cancel() // removes progressHandler