123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- /*
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
-
- #import <Foundation/Foundation.h>
-
- #import "AWSCancellationToken.h"
- #import "AWSGeneric.h"
-
- NS_ASSUME_NONNULL_BEGIN
-
- /*!
- Error domain used if there was multiple errors on <AWSTask taskForCompletionOfAllTasks:>.
- */
- extern NSString *const AWSTaskErrorDomain;
-
- /*!
- An error code used for <AWSTask taskForCompletionOfAllTasks:>, if there were multiple errors.
- */
- extern NSInteger const kAWSMultipleErrorsError;
-
- /*!
- An error userInfo key used if there were multiple errors on <AWSTask taskForCompletionOfAllTasks:>.
- Value type is `NSArray<NSError *> *`.
- */
- extern NSString *const AWSTaskMultipleErrorsUserInfoKey;
-
- @class AWSExecutor;
- @class AWSTask;
-
- /*!
- The consumer view of a Task. A AWSTask has methods to
- inspect the state of the task, and to add continuations to
- be run once the task is complete.
- */
- @interface AWSTask<__covariant ResultType> : NSObject
-
- /*!
- A block that can act as a continuation for a task.
- */
- typedef __nullable id(^AWSContinuationBlock)(AWSTask<ResultType> *t);
-
- /*!
- Creates a task that is already completed with the given result.
- @param result The result for the task.
- */
- + (instancetype)taskWithResult:(nullable ResultType)result;
-
- /*!
- Creates a task that is already completed with the given error.
- @param error The error for the task.
- */
- + (instancetype)taskWithError:(NSError *)error;
-
- /*!
- Creates a task that is already cancelled.
- */
- + (instancetype)cancelledTask;
-
- /*!
- Returns a task that will be completed (with result == nil) once
- all of the input tasks have completed.
- @param tasks An `NSArray` of the tasks to use as an input.
- */
- + (instancetype)taskForCompletionOfAllTasks:(nullable NSArray<AWSTask *> *)tasks;
-
- /*!
- Returns a task that will be completed once all of the input tasks have completed.
- If all tasks complete successfully without being faulted or cancelled the result will be
- an `NSArray` of all task results in the order they were provided.
- @param tasks An `NSArray` of the tasks to use as an input.
- */
- + (instancetype)taskForCompletionOfAllTasksWithResults:(nullable NSArray<AWSTask *> *)tasks;
-
- /*!
- Returns a task that will be completed once there is at least one successful task.
- The first task to successuly complete will set the result, all other tasks results are
- ignored.
- @param tasks An `NSArray` of the tasks to use as an input.
- */
- + (instancetype)taskForCompletionOfAnyTask:(nullable NSArray<AWSTask *> *)tasks;
-
- /*!
- Returns a task that will be completed a certain amount of time in the future.
- @param millis The approximate number of milliseconds to wait before the
- task will be finished (with result == nil).
- */
- + (AWSTask<AWSVoid> *)taskWithDelay:(int)millis;
-
- /*!
- Returns a task that will be completed a certain amount of time in the future.
- @param millis The approximate number of milliseconds to wait before the
- task will be finished (with result == nil).
- @param token The cancellation token (optional).
- */
- + (AWSTask<AWSVoid> *)taskWithDelay:(int)millis cancellationToken:(nullable AWSCancellationToken *)token;
-
- /*!
- Returns a task that will be completed after the given block completes with
- the specified executor.
- @param executor A AWSExecutor responsible for determining how the
- continuation block will be run.
- @param block The block to immediately schedule to run with the given executor.
- @returns A task that will be completed after block has run.
- If block returns a AWSTask, then the task returned from
- this method will not be completed until that task is completed.
- */
- + (instancetype)taskFromExecutor:(AWSExecutor *)executor withBlock:(nullable id (^)(void))block;
-
- // Properties that will be set on the task once it is completed.
-
- /*!
- The result of a successful task.
- */
- @property (nullable, nonatomic, strong, readonly) ResultType result;
-
- /*!
- The error of a failed task.
- */
- @property (nullable, nonatomic, strong, readonly) NSError *error;
-
- /*!
- Whether this task has been cancelled.
- */
- @property (nonatomic, assign, readonly, getter=isCancelled) BOOL cancelled;
-
- /*!
- Whether this task has completed due to an error.
- */
- @property (nonatomic, assign, readonly, getter=isFaulted) BOOL faulted;
-
- /*!
- Whether this task has completed.
- */
- @property (nonatomic, assign, readonly, getter=isCompleted) BOOL completed;
-
- /*!
- Enqueues the given block to be run once this task is complete.
- This method uses a default execution strategy. The block will be
- run on the thread where the previous task completes, unless the
- stack depth is too deep, in which case it will be run on a
- dispatch queue with default priority.
- @param block The block to be run once this task is complete.
- @returns A task that will be completed after block has run.
- If block returns a AWSTask, then the task returned from
- this method will not be completed until that task is completed.
- */
- - (AWSTask *)continueWithBlock:(AWSContinuationBlock)block NS_SWIFT_NAME(continueWith(block:));
-
- /*!
- Enqueues the given block to be run once this task is complete.
- This method uses a default execution strategy. The block will be
- run on the thread where the previous task completes, unless the
- stack depth is too deep, in which case it will be run on a
- dispatch queue with default priority.
- @param block The block to be run once this task is complete.
- @param cancellationToken The cancellation token (optional).
- @returns A task that will be completed after block has run.
- If block returns a AWSTask, then the task returned from
- this method will not be completed until that task is completed.
- */
- - (AWSTask *)continueWithBlock:(AWSContinuationBlock)block
- cancellationToken:(nullable AWSCancellationToken *)cancellationToken NS_SWIFT_NAME(continueWith(block:cancellationToken:));
-
- /*!
- Enqueues the given block to be run once this task is complete.
- @param executor A AWSExecutor responsible for determining how the
- continuation block will be run.
- @param block The block to be run once this task is complete.
- @returns A task that will be completed after block has run.
- If block returns a AWSTask, then the task returned from
- this method will not be completed until that task is completed.
- */
- - (AWSTask *)continueWithExecutor:(AWSExecutor *)executor
- withBlock:(AWSContinuationBlock)block NS_SWIFT_NAME(continueWith(executor:block:));
-
- /*!
- Enqueues the given block to be run once this task is complete.
- @param executor A AWSExecutor responsible for determining how the
- continuation block will be run.
- @param block The block to be run once this task is complete.
- @param cancellationToken The cancellation token (optional).
- @returns A task that will be completed after block has run.
- If block returns a AWSTask, then the task returned from
- his method will not be completed until that task is completed.
- */
- - (AWSTask *)continueWithExecutor:(AWSExecutor *)executor
- block:(AWSContinuationBlock)block
- cancellationToken:(nullable AWSCancellationToken *)cancellationToken
- NS_SWIFT_NAME(continueWith(executor:block:cancellationToken:));
-
- /*!
- Identical to continueWithBlock:, except that the block is only run
- if this task did not produce a cancellation or an error.
- If it did, then the failure will be propagated to the returned
- task.
- @param block The block to be run once this task is complete.
- @returns A task that will be completed after block has run.
- If block returns a AWSTask, then the task returned from
- this method will not be completed until that task is completed.
- */
- - (AWSTask *)continueWithSuccessBlock:(AWSContinuationBlock)block NS_SWIFT_NAME(continueOnSuccessWith(block:));
-
- /*!
- Identical to continueWithBlock:, except that the block is only run
- if this task did not produce a cancellation or an error.
- If it did, then the failure will be propagated to the returned
- task.
- @param block The block to be run once this task is complete.
- @param cancellationToken The cancellation token (optional).
- @returns A task that will be completed after block has run.
- If block returns a AWSTask, then the task returned from
- this method will not be completed until that task is completed.
- */
- - (AWSTask *)continueWithSuccessBlock:(AWSContinuationBlock)block
- cancellationToken:(nullable AWSCancellationToken *)cancellationToken
- NS_SWIFT_NAME(continueOnSuccessWith(block:cancellationToken:));
-
- /*!
- Identical to continueWithExecutor:withBlock:, except that the block
- is only run if this task did not produce a cancellation, error, or an error.
- If it did, then the failure will be propagated to the returned task.
- @param executor A AWSExecutor responsible for determining how the
- continuation block will be run.
- @param block The block to be run once this task is complete.
- @returns A task that will be completed after block has run.
- If block returns a AWSTask, then the task returned from
- this method will not be completed until that task is completed.
- */
- - (AWSTask *)continueWithExecutor:(AWSExecutor *)executor
- withSuccessBlock:(AWSContinuationBlock)block NS_SWIFT_NAME(continueOnSuccessWith(executor:block:));
-
- /*!
- Identical to continueWithExecutor:withBlock:, except that the block
- is only run if this task did not produce a cancellation or an error.
- If it did, then the failure will be propagated to the returned task.
- @param executor A AWSExecutor responsible for determining how the
- continuation block will be run.
- @param block The block to be run once this task is complete.
- @param cancellationToken The cancellation token (optional).
- @returns A task that will be completed after block has run.
- If block returns a AWSTask, then the task returned from
- this method will not be completed until that task is completed.
- */
- - (AWSTask *)continueWithExecutor:(AWSExecutor *)executor
- successBlock:(AWSContinuationBlock)block
- cancellationToken:(nullable AWSCancellationToken *)cancellationToken
- NS_SWIFT_NAME(continueOnSuccessWith(executor:block:cancellationToken:));
-
- /*!
- Waits until this operation is completed.
- This method is inefficient and consumes a thread resource while
- it's running. It should be avoided. This method logs a warning
- message if it is used on the main thread.
- */
- - (void)waitUntilFinished;
-
- @end
-
- NS_ASSUME_NONNULL_END
|