Instance Property
インスタンスプロパティ
concurrent
A Boolean value indicating whether the operation executes its task asynchronously.
オペレーションがそれのタスクを非同期に遂行するかどうかを指し示すブール値。
Declaration
宣言
@property(readonly, getter=isConcurrent) BOOL concurrent;
Discussion
議論
Use the asynchronous
property instead.
asynchronous
プロパティを代わりに使ってください。
The value of this property is YES
for operations that run asynchronously with respect to the current thread or NO
for operations that run synchronously on the current thread. The default value of this property is NO
.
このプロパティの値は、現在のスレッドに関して非同期に動作するオペレーションに対するYES
または現在のスレッド上で同期的に動作するオペレーションに対するNO
です。このプロパティの省略時の値はNO
です。
In macOS 10.6 and later, operation queues ignore the value in this property and always start operations on a separate thread.
macOS 10.6以降では、オペレーションキューはこのプロパティの中の値を無視します、そして常にオペレーションをある隔てられたスレッド上で開始します。
See Also
参照
Getting the Operation Status
オペレーション状態を取得する
cancelled
A Boolean value indicating whether the operation has been cancelled
オペレーションが取れ消されたかどうかを指し示すブール値。
executing
A Boolean value indicating whether the operation is currently executing.
オペレーションが現在遂行中かどうかを指し示すブール値。
finished
A Boolean value indicating whether the operation has finished executing its task.
オペレーションがそれのタスクの遂行を終了したかどうかを指し示すブール値。
asynchronous
A Boolean value indicating whether the operation executes its task asynchronously.
オペレーションがそれのタスクを非同期に遂行するかどうかを指し示すブール値。
ready
A Boolean value indicating whether the operation can be performed now.
オペレーションがいま実行されることが可能かどうかを指し示すブール値。
name
The name of the operation.
オペレーションの名前。