lpw
2021-04-20 ed8a75165efbcd79f5f9b1ab6f4ec10eed6f16a1
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>(AsyncAdditions)
22
23 typedef void (^FBLPromiseFulfillBlock)(Value __nullable value) NS_SWIFT_UNAVAILABLE("");
24 typedef void (^FBLPromiseRejectBlock)(NSError *error) NS_SWIFT_UNAVAILABLE("");
25 typedef void (^FBLPromiseAsyncWorkBlock)(FBLPromiseFulfillBlock fulfill,
26                                          FBLPromiseRejectBlock reject) NS_SWIFT_UNAVAILABLE("");
27
28 /**
29  Creates a pending promise and executes `work` block asynchronously.
30
31  @param work A block to perform any operations needed to resolve the promise.
32  @return A new pending promise.
33  */
34 + (instancetype)async:(FBLPromiseAsyncWorkBlock)work NS_SWIFT_UNAVAILABLE("");
35
36 /**
37  Creates a pending promise and executes `work` block asynchronously on the given queue.
38
39  @param queue A queue to invoke the `work` block on.
40  @param work A block to perform any operations needed to resolve the promise.
41  @return A new pending promise.
42  */
43 + (instancetype)onQueue:(dispatch_queue_t)queue
44                   async:(FBLPromiseAsyncWorkBlock)work NS_REFINED_FOR_SWIFT;
45
46 @end
47
48 /**
49  Convenience dot-syntax wrappers for `FBLPromise` `async` operators.
50  Usage: FBLPromise.async(^(FBLPromiseFulfillBlock fulfill, FBLPromiseRejectBlock reject) { ... })
51  */
52 @interface FBLPromise<Value>(DotSyntax_AsyncAdditions)
53
54 + (FBLPromise* (^)(FBLPromiseAsyncWorkBlock))async FBL_PROMISES_DOT_SYNTAX NS_SWIFT_UNAVAILABLE("");
55 + (FBLPromise* (^)(dispatch_queue_t, FBLPromiseAsyncWorkBlock))asyncOn FBL_PROMISES_DOT_SYNTAX
56     NS_SWIFT_UNAVAILABLE("");
57
58 @end
59
60 NS_ASSUME_NONNULL_END