lpw
2020-09-01 a6c01451f65c7fc139844333f37345283d5f4354
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>(AlwaysAdditions)
22
23 typedef void (^FBLPromiseAlwaysWorkBlock)(void) NS_SWIFT_UNAVAILABLE("");
24
25 /**
26  @param work A block that always executes, no matter if the receiver is rejected or fulfilled.
27  @return A new pending promise to be resolved with same resolution as the receiver.
28  */
29 - (FBLPromise *)always:(FBLPromiseAlwaysWorkBlock)work NS_SWIFT_UNAVAILABLE("");
30
31 /**
32  @param queue A queue to dispatch on.
33  @param work A block that always executes, no matter if the receiver is rejected or fulfilled.
34  @return A new pending promise to be resolved with same resolution as the receiver.
35  */
36 - (FBLPromise *)onQueue:(dispatch_queue_t)queue
37                  always:(FBLPromiseAlwaysWorkBlock)work NS_REFINED_FOR_SWIFT;
38
39 @end
40
41 /**
42  Convenience dot-syntax wrappers for `FBLPromise` `always` operators.
43  Usage: promise.always(^{...})
44  */
45 @interface FBLPromise<Value>(DotSyntax_AlwaysAdditions)
46
47 - (FBLPromise* (^)(FBLPromiseAlwaysWorkBlock))always FBL_PROMISES_DOT_SYNTAX
48     NS_SWIFT_UNAVAILABLE("");
49 - (FBLPromise* (^)(dispatch_queue_t, FBLPromiseAlwaysWorkBlock))alwaysOn FBL_PROMISES_DOT_SYNTAX
50     NS_SWIFT_UNAVAILABLE("");
51
52 @end
53
54 NS_ASSUME_NONNULL_END