- beginActivityWithOptions:reason:
- endActivity:
- performActivityWithOptions:reason:usingBlock:
Availability 有効性
Technology
- (void)performExpiringActivityWithReason:(NSString
*)reason
usingBlock:(void (^)(BOOL expired))block;
reason
A string used in debugging to indicate the reason the activity began. This parameter must not be nil
or an empty string.
デバッグにおいて使われてアクティビティを開始した理由を指し示す文字列。このパラメータは、nil
や空の文字列であってはいけません。
block
A block containing the work to be performed by the activity. The block has no return value and takes the following parameter: アクティビティによって実行される仕事を含んでいるブロック。ブロックは、値を返しません、そして以下のパラメータをとります:
A Boolean indicating whether the process is about to be suspended. If the value is YES
, the process is about to be suspended so you should take whatever steps are needed to stop in progress work. If it is NO
, start the planned tasks.
プロセスがまさに一時停止されようとしているかどうかを指し示しているブール値。値がYES
ならば、プロセスはまさに一時停止されようとしています、それであなたは、進行中の仕事を停止するために必要とされる措置はどんなものでも講じるべきです。それがNO
ならば、計画されたタスクを始めてください。
Use this method to perform tasks when your process is executing in the background. This method queues block
for asynchronous execution on a concurrent queue. When your process is in the background, the method tries to take a task assertion to ensure that your block has time to execute. If it is unable to take a task assertion, or if the time allotted for the task assertion expires, the system executes your block with the parameter set to YES
. If it is able to take the task assertion, it executes the block and passes NO
for the expired parameter.
このメソッドを使ってタスクを実行してください、あなたのプロセスがバックグラウンドで遂行される場合は。このメソッドは、並行キュー上での非同期の遂行のためにblock
をキューに入れます。あなたのプロセスがバックグラウンドにあるならば、このメソッドはあるタスクアサーションをとって、あなたのブロックが遂行する時間を持つことを確実にします。タスクアサーションをとることが不可能ならば、またはタスクアサーションのために割り当てられる時間が期限切れならば、システムはあなたのブロックをパラメータをYES
に設定して遂行します。タスクアサーションをとることが可能ならば、それはブロックを遂行します、そしてNO
をexpiredパラメータに対して渡します。
If your block is still executing and the system need to suspend the process, the system executes your block a second time with the expired
parameter set to YES
. Your block must be prepared to handle this case. When the expired parameter is YES
, stop any in-progress tasks as quickly as possible.
あなたのブロックがまだ遂行しているそしてシステムはプロセスの一時停止を必要とするならば、システムはあなたのブロックを次の機会にexpired
パラメータをYES
に設定して遂行します。あなたのブロックは、この事例を取り扱う準備ができていなければなりません。expiredパラメータがYES
である場合、あらゆる進行中のタスクを出来るだけ素早く停止してください。
- beginActivityWithOptions:reason:
- endActivity:
- performActivityWithOptions:reason:usingBlock: