- addDependency:
- removeDependency:
Availability 有効性
Technology
@property(readonly, copy) NSArray
<NSOperation
*> *dependencies;
This property contains an array of NSOperation
objects. To add an object to this array, use the add
method.
このプロパティは、NSOperation
オブジェクトいくつかからなるある配列を含みます。あるオブジェクトをこの配列に加えるには、add
メソッドを使ってください。
An operation object must not execute until all of its dependent operations finish executing. Operations are not removed from this dependency list as they finish executing. You can use this list to track all dependent operations, including those that have already finished executing. The only way to remove an operation from this list is to use the remove
method.
あるオペレーションオブジェクトは、それの依存オペレーションの全てが遂行を終了するまで遂行されるべきではありません。オペレーションそれらは、この依存関係リストからそれらが遂行を終了するとき取り除かれません。あなたは、このリストを使って全ての依存オペレーションを追跡できます、既に遂行を終了してしまったものを含めて。あるオペレーションをこのリストから取り除く唯一の方法は、remove
メソッドを使うことになります。
- addDependency:
- removeDependency: