CancellableCatchMixin
public protocol CancellableCatchMixin : CancellableThenable
Provides catch and recover to your object that conforms to CancellableThenable
-
Type of the delegate
catchableDeclaration
Swift
associatedtype C : CatchMixin -
Delegate
catchablefor this CancellablePromiseDeclaration
Swift
var catchable: C { get } -
catch(on:Extension methodpolicy: _: ) The provided closure executes when this cancellable promise rejects.
Rejecting a promise cascades: rejecting all subsequent promises (unless recover is invoked) thus you will typically place your catch at the end of a chain. Often utility promises will not have a catch, instead delegating the error handling to the caller.
See also
CancellationDeclaration
Swift
@discardableResult func `catch`(on: Dispatcher = conf.D.return, policy: CatchPolicy = conf.catchPolicy, _ body: @escaping (Error) -> Void) -> CancellableFinalizerParameters
onThe dispatcher that executes the provided closure.
policyThe default policy does not execute your handler for cancellation errors.
executeThe handler to execute if this promise is rejected.
Return Value
A promise finalizer.
-
catch(only:Extension methodon: _: ) The provided closure executes when this cancellable promise rejects with the specific error passed in. A final
catchis still required at the end of the chain.Rejecting a promise cascades: rejecting all subsequent promises (unless recover is invoked) thus you will typically place your catch at the end of a chain. Often utility promises will not have a catch, instead delegating the error handling to the caller.
Note
Since this method handles only specific errors, supplying aCatchPolicyis unsupported. You can instead specify e.g. your cancellable error.See also
CancellationDeclaration
Swift
func `catch`<E>(only: E, on: Dispatcher = conf.D.return, _ body: @escaping (E) -> Void) -> CancellableCascadingFinalizer where E : Equatable, E : ErrorParameters
onlyThe specific error to be caught and handled.
onThe queue to which the provided closure dispatches.
executeThe handler to execute if this promise is rejected with the provided error.
-
catch(only:Extension methodon: policy: _: ) The provided closure executes when this cancellable promise rejects with an error of the type passed in. A final
catchis still required at the end of the chain.Rejecting a promise cascades: rejecting all subsequent promises (unless recover is invoked) thus you will typically place your catch at the end of a chain. Often utility promises will not have a catch, instead delegating the error handling to the caller.
See also
CancellationDeclaration
Swift
func `catch`<E>(only: E.Type, on: Dispatcher = conf.D.return, policy: CatchPolicy = conf.catchPolicy, _ body: @escaping (E) -> Void) -> CancellableCascadingFinalizer where E : ErrorParameters
onlyThe error type to be caught and handled.
onThe queue to which the provided closure dispatches.
executeThe handler to execute if this promise is rejected with the provided error type.
-
recover(on:Extension methodpolicy: _: ) The provided closure executes when this cancellable promise rejects.
Unlike
catch,recovercontinues the chain. It can return a replacement promise or rethrow. Userecoverin circumstances where recovering the chain from certain errors is a possibility. For example:let context = firstly { CLLocationManager.requestLocation() }.recover { error in guard error == CLError.unknownLocation else { throw error } return .value(CLLocation.chicago) }.cancelContext //… context.cancel()See also
CancellationDeclaration
Swift
func recover<V>(on: Dispatcher = conf.D.map, policy: CatchPolicy = conf.catchPolicy, _ body: @escaping (Error) throws -> V) -> CancellablePromise<C.T> where V : CancellableThenable, Self.C.T == V.U.TParameters
onThe dispatcher that executes the provided closure.
bodyThe handler to execute if this promise is rejected.
-
recover(on:Extension methodpolicy: _: ) The provided closure executes when this cancellable promise rejects.
Unlike
catch,recovercontinues the chain. It can return a replacement promise or rethrow. Userecoverin circumstances where recovering the chain from certain errors is a possibility. For example:let context = firstly { CLLocationManager.requestLocation() }.cancellize().recover { error in guard error == CLError.unknownLocation else { throw error } return Promise.value(CLLocation.chicago) }.cancelContext //… context.cancel()See also
CancellationDeclaration
Swift
func recover<V>(on: Dispatcher = conf.D.map, policy: CatchPolicy = conf.catchPolicy, _ body: @escaping (Error) throws -> V) -> CancellablePromise<C.T> where V : Thenable, V.T == Self.C.TParameters
onThe dispatcher that executes the provided closure.
policyThe default policy does not execute your handler for cancellation errors.
bodyThe handler to execute if this promise is rejected.
-
recover(only:Extension methodon: _: ) The provided closure executes when this cancellable promise rejects with the specific error passed in.
Unlike
catch,recovercontinues the chain. It can return a replacement promise or rethrow. Userecoverin circumstances where recovering the chain from certain errors is a possibility. For example:firstly { CLLocationManager.requestLocation() }.recover(CLError.unknownLocation) { return .value(CLLocation.chicago) }Note
Since this method recovers only specific errors, supplying aCatchPolicyis unsupported.See also
CancellationDeclaration
Swift
func recover<V, E>(only: E, on: Dispatcher = conf.D.map, _ body: @escaping (E) throws -> V) -> CancellablePromise<C.T> where V : CancellableThenable, E : Equatable, E : Error, Self.C.T == V.U.TParameters
onlyThe specific error to be recovered (e.g.,
PMKError.emptySequence)onThe dispatcher that executes the provided closure.
bodyThe handler to execute if this promise is rejected with the provided error.
-
recover(only:Extension methodon: _: ) The provided closure executes when this cancellable promise rejects with the specific error passed in.
Unlike
catch,recovercontinues the chain. It can return a replacement promise or rethrow. Userecoverin circumstances where recovering the chain from certain errors is a possibility. For example:firstly { CLLocationManager.requestLocation() }.recover(CLError.unknownLocation) { return Promise.value(CLLocation.chicago) }Note
Since this method recovers only specific errors, supplying aCatchPolicyis unsupported. You can instead specify e.g. your cancellable error.See also
CancellationDeclaration
Swift
func recover<V, E>(only: E, on: Dispatcher = conf.D.map, _ body: @escaping (E) throws -> V) -> CancellablePromise<C.T> where V : Thenable, E : Equatable, E : Error, V.T == Self.C.TParameters
onlyThe specific error to be recovered.
onThe queue to which the provided closure dispatches.
bodyThe handler to execute if this promise is rejected with the provided error.
-
recover(only:Extension methodon: policy: _: ) The provided closure executes when this cancellable promise rejects with an error of the type passed in.
Unlike
catch,recovercontinues the chain. It can return a replacement promise or rethrow. Userecoverin circumstances where recovering the chain from certain errors is a possibility. For example:firstly { API.fetchData() }.recover(FetchError.self) { error in guard case .missingImage(let partialData) = error else { throw error } //… return .value(dataWithDefaultImage) }See also
CancellationDeclaration
Swift
func recover<V, E>(only: E.Type, on: Dispatcher = conf.D.map, policy: CatchPolicy = conf.catchPolicy, _ body: @escaping (E) throws -> V) -> CancellablePromise<C.T> where V : CancellableThenable, E : Error, Self.C.T == V.U.TParameters
onlyThe error type to be recovered.
onThe dispatcher that executes the provided closure.
policyThe default policy does not execute your handler for cancellation errors.
bodyThe handler to execute if this promise is rejected with the provided error type.
-
recover(only:Extension methodon: policy: _: ) The provided closure executes when this cancellable promise rejects with an error of the type passed in.
Unlike
catch,recovercontinues the chain. It can return a replacement promise or rethrow. Userecoverin circumstances where recovering the chain from certain errors is a possibility. For example:firstly { API.fetchData() }.recover(FetchError.self) { error in guard case .missingImage(let partialData) = error else { throw error } //… return Promise.value(dataWithDefaultImage) }See also
CancellationDeclaration
Swift
func recover<V, E>(only: E.Type, on: Dispatcher = conf.D.map, policy: CatchPolicy = conf.catchPolicy, _ body: @escaping (E) throws -> V) -> CancellablePromise<C.T> where V : Thenable, E : Error, V.T == Self.C.TParameters
onlyThe error type to be recovered.
onThe queue to which the provided closure dispatches.
bodyThe handler to execute if this promise is rejected with the provided error type.
-
ensure(on:Extension method_: ) The provided closure executes when this cancellable promise resolves, whether it rejects or not.
let context = firstly { UIApplication.shared.networkActivityIndicatorVisible = true //… returns a cancellable promise }.done { //… }.ensure { UIApplication.shared.networkActivityIndicatorVisible = false }.catch { //… }.cancelContext //… context.cancel()Declaration
Swift
func ensure(on: Dispatcher = conf.D.return, _ body: @escaping () -> Void) -> CancellablePromise<C.T>Parameters
onThe dispatcher that executes the provided closure.
bodyThe closure that executes when this promise resolves.
Return Value
A new promise, resolved with this promise’s resolution.
-
ensureThen(on:Extension method_: ) The provided closure executes when this cancellable promise resolves, whether it rejects or not. The chain waits on the returned
CancellablePromise<Void>.let context = firstly { setup() // returns a cancellable promise }.done { //… }.ensureThen { teardown() // -> CancellablePromise<Void> }.catch { //… }.cancelContext //… context.cancel()Declaration
Swift
func ensureThen(on: Dispatcher = conf.D.return, _ body: @escaping () -> CancellablePromise<Void>) -> CancellablePromise<C.T>Parameters
onThe dispatcher that executes the provided closure.
bodyThe closure that executes when this promise resolves.
Return Value
A new promise, resolved with this promise’s resolution.
-
cauterize()Extension methodConsumes the Swift unused-result warning.
Note
You shouldcatch, but in situations where you know you don’t need acatch,cauterizemakes your intentions clear.Declaration
Swift
@discardableResult func cauterize() -> CancellableFinalizer -
recover(on:Extension methodflags: policy: _: ) The provided closure executes when this cancellable promise rejects.
Unlike
catch,recovercontinues the chain. It can return a replacement promise or rethrow. Userecoverin circumstances where recovering the chain from certain errors is a possibility. For example:let context = firstly { CLLocationManager.requestLocation() }.recover { error in guard error == CLError.unknownLocation else { throw error } return .value(CLLocation.chicago) }.cancelContext //… context.cancel()See also
CancellationDeclaration
Swift
func recover<V: CancellableThenable>(on: DispatchQueue? = .pmkDefault, flags: DispatchWorkItemFlags? = nil, policy: CatchPolicy = conf.catchPolicy, _ body: @escaping(Error) throws -> V) -> CancellablePromise<C.T> where V.U.T == C.TParameters
onThe queue to which the provided closure dispatches.
flagsDispatchWorkItemFlagsto be applied when dispatching.policyThe default policy does not execute your handler for cancellation errors.
bodyThe handler to execute if this promise is rejected.
-
recover(only:Extension methodon: flags: _: ) The provided closure executes when this cancellable promise rejects with the specific error passed in.
Unlike
catch,recovercontinues the chain. It can return a replacement promise or rethrow. Userecoverin circumstances where recovering the chain from certain errors is a possibility. For example:firstly { CLLocationManager.requestLocation() }.recover(CLError.unknownLocation) { return .value(CLLocation.chicago) }Note
Since this method recovers only specific errors, supplying aCatchPolicyis unsupported.See also
CancellationDeclaration
Swift
func recover<V: CancellableThenable, E: Swift.Error>(only: E, on: DispatchQueue? = .pmkDefault, flags: DispatchWorkItemFlags? = nil, _ body: @escaping(E) throws -> V) -> CancellablePromise<C.T> where V.U.T == C.T, E: EquatableParameters
onlyThe specific error to be recovered (e.g.,
PMKError.emptySequence)onThe queue to which the provided closure dispatches.
flagsDispatchWorkItemFlagsto be applied when dispatching.bodyThe handler to execute if this promise is rejected with the provided error.
-
recover(only:Extension methodon: flags: policy: _: ) The provided closure executes when this cancellable promise rejects with an error of the type passed in.
Unlike
catch,recovercontinues the chain. It can return a replacement promise or rethrow. Userecoverin circumstances where recovering the chain from certain errors is a possibility. For example:firstly { API.fetchData() }.recover(FetchError.self) { error in guard case .missingImage(let partialData) = error else { throw error } //… return .value(dataWithDefaultImage) }See also
CancellationDeclaration
Swift
func recover<V: CancellableThenable, E: Swift.Error>(only: E.Type, on: DispatchQueue? = .pmkDefault, flags: DispatchWorkItemFlags? = nil, policy: CatchPolicy = conf.catchPolicy, _ body: @escaping(E) throws -> V) -> CancellablePromise<C.T> where V.U.T == C.TParameters
onlyThe error type to be recovered.
onThe queue to which the provided closure dispatches.
flagsDispatchWorkItemFlagsto be applied when dispatching.policyThe default policy does not execute your handler for cancellation errors.
bodyThe handler to execute if this promise is rejected with the provided error type.
-
recover(on:Extension methodpolicy: _: ) The provided closure executes when this cancellable promise rejects.
This variant of
recoverensures that no error is thrown from the handler and allows specifying a catch policy.See also
CancellationDeclaration
Swift
func recover(on: Dispatcher = conf.D.map, policy: CatchPolicy = conf.catchPolicy, _ body: @escaping (Error) throws -> Void) -> CancellablePromise<Void>Parameters
onThe dispatcher that executes the provided closure.
bodyThe handler to execute if this promise is rejected.
-
recover(only:Extension methodon: _: ) The provided closure executes when this cancellable promise rejects with the specific error passed in.
Unlike
catch,recovercontinues the chain. It can return a replacement promise or rethrow. Userecoverin circumstances where recovering the chain from certain errors is a possibility.Note
Since this method recovers only specific errors, supplying aCatchPolicyis unsupported. You can instead specify e.g. your cancellable error.See also
CancellationDeclaration
Swift
func recover<E: Swift.Error>(only: E, on: Dispatcher = conf.D.map, _ body: @escaping(E) throws -> Void) -> CancellablePromise<Void> where E: EquatableParameters
onlyThe specific error to be recovered.
onThe queue to which the provided closure dispatches.
bodyThe handler to execute if this promise is rejected with the provided error.
-
recover(only:Extension methodon: policy: _: ) The provided closure executes when this cancellable promise rejects with an error of the type passed in.
Unlike
catch,recovercontinues the chain. It can return a replacement promise or rethrow. Userecoverin circumstances where recovering the chain from certain errors is a possibility.See also
CancellationDeclaration
Swift
func recover<E>(only: E.Type, on: Dispatcher = conf.D.map, policy: CatchPolicy = conf.catchPolicy, _ body: @escaping (E) throws -> Void) -> CancellablePromise<Void> where E : ErrorParameters
onlyThe error type to be recovered.
onThe queue to which the provided closure dispatches.
bodyThe handler to execute if this promise is rejected with the provided error type.
View on GitHub
CancellableCatchMixin Protocol Reference