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.
64 lines
2.4 KiB
64 lines
2.4 KiB
3 years ago
|
/**
|
||
|
Copyright 2018 Google Inc. All rights reserved.
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at:
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
*/
|
||
|
|
||
|
#import "FBLPromise.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface FBLPromise<Value>(AllAdditions)
|
||
|
|
||
|
/**
|
||
|
Wait until all of the given promises are fulfilled.
|
||
|
If one of the given promises is rejected, then the returned promise is rejected with same error.
|
||
|
If any other arbitrary value or `NSError` appears in the array instead of `FBLPromise`,
|
||
|
it's implicitly considered a pre-fulfilled or pre-rejected `FBLPromise` correspondingly.
|
||
|
Promises resolved with `nil` become `NSNull` instances in the resulting array.
|
||
|
|
||
|
@param promises Promises to wait for.
|
||
|
@return Promise of an array containing the values of input promises in the same order.
|
||
|
*/
|
||
|
+ (FBLPromise<NSArray *> *)all:(NSArray *)promises NS_SWIFT_UNAVAILABLE("");
|
||
|
|
||
|
/**
|
||
|
Wait until all of the given promises are fulfilled.
|
||
|
If one of the given promises is rejected, then the returned promise is rejected with same error.
|
||
|
If any other arbitrary value or `NSError` appears in the array instead of `FBLPromise`,
|
||
|
it's implicitly considered a pre-fulfilled or pre-rejected FBLPromise correspondingly.
|
||
|
Promises resolved with `nil` become `NSNull` instances in the resulting array.
|
||
|
|
||
|
@param queue A queue to dispatch on.
|
||
|
@param promises Promises to wait for.
|
||
|
@return Promise of an array containing the values of input promises in the same order.
|
||
|
*/
|
||
|
+ (FBLPromise<NSArray *> *)onQueue:(dispatch_queue_t)queue
|
||
|
all:(NSArray *)promises NS_REFINED_FOR_SWIFT;
|
||
|
|
||
|
@end
|
||
|
|
||
|
/**
|
||
|
Convenience dot-syntax wrappers for `FBLPromise` `all` operators.
|
||
|
Usage: FBLPromise.all(@[ ... ])
|
||
|
*/
|
||
|
@interface FBLPromise<Value>(DotSyntax_AllAdditions)
|
||
|
|
||
|
+ (FBLPromise<NSArray *> * (^)(NSArray *))all FBL_PROMISES_DOT_SYNTAX NS_SWIFT_UNAVAILABLE("");
|
||
|
+ (FBLPromise<NSArray *> * (^)(dispatch_queue_t, NSArray *))allOn FBL_PROMISES_DOT_SYNTAX
|
||
|
NS_SWIFT_UNAVAILABLE("");
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|