func addOperation (Operation)
func addOperation (() -> Void)
func addBarrierBlock (() -> Void)
func cancelAllOperations ()
func waitUntilAllOperationsAreFinished ()
var operations: [Operation]
var operationCount : Int
Availability 有効性
Technology
ops
The operations to be added to the queue. キューに加えられることになるオペレーションそれら。
wait
If true
, the current thread is blocked until all of the specified operations finish executing. If false
, the operations are added to the queue and control returns immediately to the caller.
true
ならば、現在のスレッドは遮断されます、指定されたオペレーションの全てが遂行を終了するまで。false
ならば、オペレーションそれらはキューに加えられます、そして制御は直ぐに呼び出し側へ返ります。
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 is
method returns true
.
いったん加えられたならば、指定されたoperation
はキューの中に留まります、それのis
メソッドがtrue
を返すまでは。
func addOperation (Operation)
func addOperation (() -> Void)
func addBarrierBlock (() -> Void)
func cancelAllOperations ()
func waitUntilAllOperationsAreFinished ()
var operations: [Operation]
var operationCount : Int