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

operationQueue

The queue on which query result notifications are posted. それの上に照会結果通知が投函されるところのキュー。

Declaration 宣言

var operationQueue: OperationQueue? { get set }

Discussion 議論

Use this property to decouple the processing of results from the thread used to execute the query. This makes it easier to synchronize query result processing with other related operations—such as updating the data model or user interface—which you might want to perform on the main queue. このメソッドを使うことで、照会を実行するために使われるスレッドから、結果の処理を切り離してください。これは照会結果処理が、他の関連演算 — 例えばデータモデルやユーザインターフェイスの更新など — あなたがメインキュー上で実行することを望むかもしれないものと同調するのを簡単にします。

See Also 参照

Getting Query Results 照会結果を取得する