BFExecutor Class Reference
| Inherits from | NSObject |
| Declared in | BFExecutor.h |
Class Methods
defaultExecutor
Returns a default executor, which runs continuations immediately until the call stack gets too deep, then dispatches to a new GCD queue.
+ (instancetype)defaultExecutorDiscussion
Returns a default executor, which runs continuations immediately until the call stack gets too deep, then dispatches to a new GCD queue.
Declared In
BFExecutor.hexecutorWithBlock:
Returns a new executor that uses the given block to execute continuations.
+ (instancetype)executorWithBlock:(id)blockParameters
- block
The block to use.
Discussion
Returns a new executor that uses the given block to execute continuations.
Declared In
BFExecutor.hexecutorWithDispatchQueue:
Returns a new executor that runs continuations on the given queue.
+ (instancetype)executorWithDispatchQueue:(id)queueParameters
- queue
The instance of
dispatch_queue_tto dispatch all continuations onto.
Discussion
Returns a new executor that runs continuations on the given queue.
Declared In
BFExecutor.hexecutorWithOperationQueue:
Returns a new executor that runs continuations on the given queue.
+ (instancetype)executorWithOperationQueue:(id)queueParameters
- queue
The instance of
NSOperationQueueto run all continuations on.
Discussion
Returns a new executor that runs continuations on the given queue.
Declared In
BFExecutor.h