You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

27 lines
590 B

//
// Promise+NoMatterWhat.swift
// then
//
// Created by Sacha Durand Saint Omer on 24/02/2017.
// Copyright © 2017 s4cha. All rights reserved.
//
import Foundation
extension Promise {
public func noMatterWhat(_ block: @escaping () -> Void) -> Promise<T> {
let p = newLinkedPromise()
syncStateWithCallBacks(
success: { t in
block()
p.fulfill(t)
},
failure: { e in
block()
p.reject(e)
},
progress: p.setProgress)
return p
}
}