Instance Method
インスタンスメソッド
addOperationWithBlock:
Wraps the specified block in an operation and adds it to the receiver.
あるオペレーションの中の指定されたブロックをラップして、それをレシーバに加えます。
Declaration
宣言
- (void)addOperationWithBlock:(void (^)(void))block;
Parameters
パラメータ
block
The block to execute from the operation. The block takes no parameters and has no return value.
オペレーションから遂行することになるブロック。ブロックはパラメータを取りません、そして戻り値を持ちません。
Discussion
議論
This method adds a single block to the receiver by first wrapping it in an operation object. You should not attempt to get a reference to the newly created operation object or determine its type information.
このメソッドは、ある単一のブロックをレシーバへと加えます、それをまずオペレーションオブジェクトの中にラップすることによって。あなたは、新しく作成されたオペレーションオブジェクトへの参照を得るまたはそれの型情報を決定することを試みるべきではありません。
See Also
参照
Managing Operations in the Queue
キューの中のオペレーションそれらを管理する
- addOperation:
Adds the specified operation to the receiver.
指定されたオペレーションをレシーバに加えます。
- addBarrierBlock:
Invokes a block when the queue finishes all enqueued operations, and prevents subsequent operations from starting until the block has completed.
operations
The operations currently in the queue.
現在キューの中にあるオペレーションそれら。
Deprecated
非推奨
operationCount
The number of operations currently in the queue.
現在キューの中にあるオペレーションの数。
Deprecated
非推奨
Related Documentation
関連文書
- cancel
Advises the operation object that it should stop executing its task.
それがそれのタスクの遂行を停止すべきオペレーションオブジェクトを勧告します。
executing
A Boolean value indicating whether the operation is currently executing.
オペレーションが現在遂行中かどうかを指し示すブール値。