- addOperation:
- addOperationWithBlock:
- addBarrierBlock:
- cancelAllOperations
- waitUntilAllOperationsAreFinished
Availability 有効性
Technology
- (void)addOperations:(NSArray
<NSOperation
*> *)ops
waitUntilFinished:(BOOL)wait;
ops
The operations to be added to the queue. キューに加えられることになるオペレーションそれら。
wait
If YES
, the current thread is blocked until all of the specified operations finish executing. If NO
, the operations are added to the queue and control returns immediately to the caller.
YES
ならば、現在のスレッドは遮断されます、指定されたオペレーションの全てが遂行を終了するまで。NO
ならば、オペレーションそれらはキューに加えられます、そして制御は直ぐに呼び出し側へ返ります。
An operation object can be in at most one operation queue at a time and cannot be added if it is currently executing or finished. This method throws an NSInvalid
exception if any of those error conditions are true for any of the operations in the ops
parameter.
オペレーションオブジェクトは、一度に最大で1つのオペレーションキューの中に入ることができます、そしてそれが現在遂行中または終了されたならば加えられることは出来ません。このメソッドは、それらエラー条件のどれかがops
パラメータの中のオペレーションのどれかに対して真ならば、NSInvalid
例外をスローします。
Once added, the specified operation
remains in the queue until its finished
method returns YES
.
いったん加えられたならば、指定されたoperation
はキューの中に留まります、それのfinished
メソッドがYES
を返すまでは。
- addOperation:
- addOperationWithBlock:
- addBarrierBlock:
- cancelAllOperations
- waitUntilAllOperationsAreFinished