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

presentedItemOperationQueue

The operation queue in which to execute presenter-related messages. それにおいてプレゼンタ関連メッセージを実行することになる演算キュー。

Declaration 宣言

var presentedItemOperationQueue: OperationQueue { get }

Discussion 議論

As other objects and processes interact with the presented item, the system queues relevant messages for this presenter object on the operation queue in this property. For example, when another process attempts to read a file presented by this object, the system places an invocation of this object’s relinquishPresentedItem(toReader:) method on the queue for execution. The other process must wait to read the file until that method is dequeued and executed. Requests for an object’s presented URL are not processed on this queue. この提示される項目と相互作用する他のオブジェクトやプロセスのように、システムは、このプレゼンタオブジェクトに対する関係のあるメッセージを、このプロパティの中の演算キュー上でキューに加えます。例えば、あるファイルプレゼンタをこのオブジェクトによって読み出すことを別のプロセスが試みる場合、システムはこのオブジェクトのもつrelinquishPresentedItem(toReader:)メソッドの発動を実行用のキュー上に置きます。他のプロセスは、そのメソッドがデキューされて実行されるまで、ファイルの読み出しを待機しなければなりません。あるオブジェクトのもつ提示されるURLに対する要請それらは、このキュー上で処理されません。

See Also 参照

Accessing File Presenter Attributes ファイルプレゼンタ属性にアクセスする