lpw
2023-06-03 aca600212ff84587e15aad341babd5eb2faf69a5
commit | author | age
a6c014 1 /**
L 2  Copyright 2018 Google Inc. All rights reserved.
3
4  Licensed under the Apache License, Version 2.0 (the "License");
5  you may not use this file except in compliance with the License.
6  You may obtain a copy of the License at:
7
8  http://www.apache.org/licenses/LICENSE-2.0
9
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15  */
16
17 #import "FBLPromise.h"
18
19 NS_ASSUME_NONNULL_BEGIN
20
21 @interface FBLPromise<Value>(CatchAdditions)
22
23 typedef void (^FBLPromiseCatchWorkBlock)(NSError *error) NS_SWIFT_UNAVAILABLE("");
24
25 /**
26  Creates a pending promise which eventually gets resolved with same resolution as the receiver.
27  If receiver is rejected, then `reject` block is executed asynchronously.
28
29  @param reject A block to handle the error that receiver was rejected with.
30  @return A new pending promise.
31  */
32 - (FBLPromise *)catch:(FBLPromiseCatchWorkBlock)reject NS_SWIFT_UNAVAILABLE("");
33
34 /**
35  Creates a pending promise which eventually gets resolved with same resolution as the receiver.
36  If receiver is rejected, then `reject` block is executed asynchronously on the given queue.
37
38  @param queue A queue to invoke the `reject` block on.
39  @param reject A block to handle the error that receiver was rejected with.
40  @return A new pending promise.
41  */
42 - (FBLPromise *)onQueue:(dispatch_queue_t)queue
43                   catch:(FBLPromiseCatchWorkBlock)reject NS_REFINED_FOR_SWIFT;
44
45 @end
46
47 /**
48  Convenience dot-syntax wrappers for `FBLPromise` `catch` operators.
49  Usage: promise.catch(^(NSError *error) { ... })
50  */
51 @interface FBLPromise<Value>(DotSyntax_CatchAdditions)
52
53 - (FBLPromise* (^)(FBLPromiseCatchWorkBlock))catch FBL_PROMISES_DOT_SYNTAX NS_SWIFT_UNAVAILABLE("");
54 - (FBLPromise* (^)(dispatch_queue_t, FBLPromiseCatchWorkBlock))catchOn FBL_PROMISES_DOT_SYNTAX
55     NS_SWIFT_UNAVAILABLE("");
56
57 @end
58
59 NS_ASSUME_NONNULL_END