Instance Method インスタンスメソッド

addOperations:waitUntilFinished:

Adds the specified operations to the queue. 指定されたオペレーションをキューに加えます。

Declaration 宣言

- (void)addOperations:(NSArray<NSOperation *> *)ops 
    waitUntilFinished:(BOOL)wait;

Parameters パラメータ

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ならば、オペレーションそれらはキューに加えられます、そして制御は直ぐに呼び出し側へ返ります。

Discussion 議論

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 NSInvalidArgumentException exception if any of those error conditions are true for any of the operations in the ops parameter. オペレーションオブジェクトは、一度に最大で1つのオペレーションキューの中に入ることができます、そしてそれが現在遂行中または終了されたならば加えられることは出来ません。このメソッドは、それらエラー条件のどれかがopsパラメータの中のオペレーションのどれかに対して真ならば、NSInvalidArgumentException例外をスローします。

Once added, the specified operation remains in the queue until its finished method returns YES. いったん加えられたならば、指定されたoperationはキューの中に留まります、それのfinishedメソッドがYESを返すまでは。

See Also 参照

Managing Operations in the Queue キューの中のオペレーションそれらを管理する