cancelled
finished
concurrent
asynchronous
ready
name
Availability 有効性
Technology
@property(readonly, getter=isExecuting) BOOL executing;
The value of this property is YES
if the operation is currently executing its main task or NO
if it is not.
このプロパティの値は、オペレーションが現在それのメインタスクを遂行しているならばYES
またはそうでないならばNO
です。
When implementing a concurrent operation object, you must override the implementation of this property so that you can return the execution state of your operation. In your custom implementation, you must generate KVO notifications for the is
key path whenever the execution state of your operation object changes. For more information about manually generating KVO notifications, see Key-Value Observing Programming Guide.
並行オペレーションオブジェクトを実装している場合、あなたはこのプロパティの実装をオーバーライドして、それであなたがあなたのオペレーションの遂行状態を返すことができるようにしなければなりません。あなたのあつらえの実装において、あなたはKVO通知をis
キーパスに対して生成しなければなりません、あなたのオペレーションオブジェクトの遂行状態が変化する時は必ず。手動でKVO通知を生成する事についてのさらなる情報として、Key-Value Observing Programming Guideを見てください。
You do not need to reimplement this property for nonconcurrent operations. あなたは、このプロパティを非並行オペレーションに対して再実装する必要はありません。
cancelled
finished
concurrent
asynchronous
ready
name