Instance Property インスタンスプロパティ

maxConcurrentOperationCount

The maximum number of queued operations that can run at the same time.

Declaration 宣言

@property NSInteger maxConcurrentOperationCount;

Discussion 議論

The value in this property affects only the operations that the current queue has executing at the same time. Other operation queues can also execute their maximum number of operations in parallel. このプロパティの中の値は、現在のキューが遂行を同時に行っているオペレーションそれらのみに影響を与えます。他のオペレーションキューはまた、それらの最大限度の数のオペレーションを並列に遂行できます。

Reducing the number of concurrent operations does not affect any operations that are currently executing. Specifying the value NSOperationQueueDefaultMaxConcurrentOperationCount (which is recommended) causes the system to set the maximum number of operations based on system conditions. 並列実行の数を減らすことは、現在遂行中であるいかなるオペレーションにも影響しません。値NSOperationQueueDefaultMaxConcurrentOperationCountを指定すること(それは推奨されます)は、システムにオペレーションの最大限の数の設定をシステム条件に基づいて行わせます。

The default value of this property is NSOperationQueueDefaultMaxConcurrentOperationCount. You may monitor changes to the value of this property using Key-value observing. Configure an observer to monitor the maxConcurrentOperationCount key path of the operation queue. このプロパティの省略時の値は、NSOperationQueueDefaultMaxConcurrentOperationCountです。あなたは、このプロパティへの変更をキー値監視を使って監視するかもしれません。ひとつのオブザーバを構成設定して、オペレーションキューのmaxConcurrentOperationCountキーパスを監視してください。

See Also 参照

Managing the Execution of Operations オペレーションの遂行を管理する