- addOperations:waitUntilFinished:
- addOperationWithBlock:
- addBarrierBlock:
- cancelAllOperations
- waitUntilAllOperationsAreFinished
Availability 有効性
Technology
- (void)addOperation:(NSOperation
*)op;
operation
The operation to be added to the queue. キューに加えられることになるオペレーション。
Once added, the specified operation remains in the queue until it finishes executing. いったん加えられたならば、指定されたオペレーションはキューの中に留まります、それが遂行を終了するまで。
Important 重要
An operation object can be in at most one operation queue at a time and this method throws an NSInvalid
exception if the operation is already in another queue. Similarly, this method throws an NSInvalid
exception if the operation is currently executing or has already finished executing.
オペレーションオブジェクトは、一度に最大で1つのオペレーションキューの中に入ることができます、そしてこのメソッドはNSInvalid
例外をスローします、もしそのオペレーションが既に別のキューの中にあるならば。同様に、このメソッドはNSInvalid
例外をスローします、もしそのオペレーションが現在遂行中であるか既に遂行を終了してしまったならば。
- addOperations:waitUntilFinished:
- addOperationWithBlock:
- addBarrierBlock:
- cancelAllOperations
- waitUntilAllOperationsAreFinished