Class

NSBlockOperation

An operation that manages the concurrent execution of one or more blocks. ひとつ以上のブロックの並列実行を管理するある演算。

Declaration 宣言

@interface NSBlockOperation : NSOperation

Overview 概要

The NSBlockOperation class is a concrete subclass of NSOperation that manages the concurrent execution of one or more blocks. You can use this object to execute several blocks at once without having to create separate operation objects for each. When executing more than one block, the operation itself is considered finished only when all blocks have finished executing. NSBlockOperationクラスは、NSOperationの具体的なサブクラスです、それは、1つ以上のブロックの共同実行を管理します。あなたはこのオブジェクトを使って、一度に幾つかのブロックを、それぞれに対して個々のオペレーションオブジェクトを作成する必要なしに実行することができます。ひとつ以上のブロックを実行する時、それ自体のオペレーションがやり終えられたとみなされるのはただ全てのブロックが実行をやり終えた時のみです。

Blocks added to a block operation are dispatched with default priority to an appropriate work queue. The blocks themselves should not make any assumptions about the configuration of their execution environment. あるブロック演算に加えられるブロックは、省略時の優先度で適切なワークキューに向けてディスパッチされます。ブロックそれら自体は、それらの実行環境の構成設定について何らかの仮定をすべきではありません。

For more information about blocks, see Blocks Programming Topics. ブロックについてのさらなる情報として、Blocks Programming Topicsを見てください。

Topics 話題

Managing the Blocks in the Operation 演算中のブロックを管理する

Relationships 関係

Inherits From 継承元

See Also 参照

Operations さまざまな演算