Use an NSBackgroundActivityScheduler object to schedule an arbitrary maintenance or background task. It’s similar to an Timer object, in that it lets you schedule a repeating or non-repeating task. However, NSBackgroundActivityScheduler gives the system flexibility to determine the most efficient time to execute based on energy usage, thermal conditions, and CPU use.NSBackgroundActivitySchedulerオブジェクトを使って、随意のメンテナンスまたはバックグラウンド作業を予定に組んでください。それがあなたに繰り返しのまたは繰り返さない作業を予定させることにおいて、それはTimerオブジェクトに似ています。しかしながら、NSBackgroundActivitySchedulerは、システムに柔軟性を与えることで、最も効率的な時を判定して、エネルギー使用、温度条件、そしてCPU利用に基づいて実行します。
For example, use an NSBackgroundActivityScheduler object to schedule:
例えば、NSBackgroundActivitySchedulerオブジェクトを使って以下の予定を組んでください:
Automatic saves
自動的な保存
Backups
バックアップ
Data maintenance
データ保守
Periodic content fetches
定期刊行物を取りに行く
Installation of updates
アップデートのインストール
Activities occurring in intervals of 10 minutes or more
10分またはそれ以上の間隔で発生する活動
To initialize a scheduler, call init(identifier:) for NSBackgroundActivityScheduler, and pass it a unique identifier string in reverse DNS notation (nil and zero-length strings are not allowed) that remains constant across launches of your application. See Listing 1.
スケジューラを初期化するには、init(identifier:)をNSBackgroundActivitySchedulerに対して呼び出してください、そしてそれに逆DNS表記法でのある固有な識別子を渡してください(nilとゼロ幅文字列は認められません)、それはあなたのアプリケーションの起動にまたがって不変のままのものです。コード出力 1を見てください。
Configure Scheduler Properties
スケジューラプロパティを構成設定する
Configure the scheduler with any of the following scheduling properties:
スケジューラの構成設定を次のスケジューラプロパティのいずれかで行ってください:
repeats—If set to true, the activity is rescheduled at the specified interval after finishing.repeats— trueに設定されるならば、その活動は完了後に指定の間隔で再度予定に組まれます。
interval—For repeating schedulers, the average interval between invocations of the activity. For nonrepeating schedulers, interval is the suggested interval of time between scheduling the activity and the invocation of the activity.interval— 繰り返すスケジューラに対して、その活動の発動間の平均間隔。繰り返さないスケジューラに対して、intervalは、活動を予定に組むことと活動の発動の間の推奨される時間的間隔です。
tolerance—The amount of time before or after the nominal fire date when the activity should be invoked. The nominal fire date is calculated by using the interval combined with the previous fire date or the time when the activity is started. These two properties create a window in time, during which the activity may be scheduled. The system will more aggressively schedule the activity as it nears the end of the grace period after the nominal fire date. The default value is half the interval.tolerance— その活動が発動されるべき名目上の起動日の前または後の時間量。名目上の起動日は、前の起動日またはその活動が開始された時間とintervalを結合することによって計算されます。それら2つのプロパティは、あるウインドウを時間内に作成します、その間にその活動は予定に組まれるかもしれません。システムは、名目上の起動日の後での猶予期間の終わりにそれが近くなるにつれ、より積極的に予定を組みます。省略時の値は、intervalの半分です。
Listing 2, Listing 3, and Listing 4 demonstrate different scheduling scenarios.コード出力 2、コード出力 3、そしてコード出力 4は、予定を組むことの異なる起こりうる事態を実演します。
Schedule Activity with scheduleWithBlock:
活動をscheduleWithBlock:を使って予定に組む
When you’re ready to schedule the activity, call scheduleWithBlock: and provide a block of code to execute when the scheduler runs, as shown in Listing 5. The block will be called on a serial background queue appropriate for the level of quality of service specified. The system automatically uses the beginActivity(options:reason:) method (of ProcessInfo) while invoking the block, choosing appropriate options based on the specified quality of service.
あなたがその活動を予定に組む準備ができた場合、scheduleWithBlock:を呼び出して、スケジューラが動作する場合に実行するコードのブロックを提供してください、 コード出力 5で示すように。ブロックは、指定されるサービスの質のレベルに適切なシリアル(直列)バックグラウンドキュー上で呼び出されます。システムは、自動的にbeginActivity(options:reason:)メソッド(ProcessInfoの)をブロック発動の間に使います、適切なオプションをサービスの指定された質に基づいて選択します。
Detect Whether to Defer Activity
活動を延期するかどうかを突き止める
It’s conceivable that while a lengthy activity is running, conditions may change, resulting in the activity now requiring deferral. For example, perhaps the user has unplugged the Mac and it’s now running on battery power. Your activity can call shouldDefer to determine whether this has occurred. A value of true indicates that the block should finish what it’s currently doing and invoke its completion handler with a value of NSBackgroundActivityScheduler.Result.deferred. See Listing 6.
ある長すぎる活動が実行中である間、条件が変わり、その活動はそのとき延期を必要とする結果になるということはありえないことではありません。例えば、ことによるとユーザがMacのコードを抜いて、それは今ではバッテリー電源で動作しているかもしれません。あなたの活動は、shouldDeferを呼び出して、これが起こったかどうかを判定できます。true の値は、ブロックが、現在実行中のどれをやり終えて、それの完了ハンドラをNSBackgroundActivityScheduler.Result.deferredの値で発動すべきかを指し示します。コード出力 6を見てください。
Stop Activity
活動を停止する
Call invalidate() to stop scheduling an activity, as shown in Listing 7.invalidate()を呼び出して、ある活動を予定に組むことを停止します、コード出力 7で示すように。
A unique reverse DNS notation string, such as com.example.MyApp.updatecheck, that identifies the activity.
特有な逆DNS表記法文字列、例えばcom.example.MyApp.updatecheckなど、それはその活動を識別するものです。
A value of type NSQualityOfService, which controls how aggressively the system schedules the activity.
型NSQualityOfServiceの値、それはどのくらい積極的にシステムがその活動を予定に組むかを制御します。
A Boolean value indicating whether your app should stop performing background activity and resume at a more optimal time.
あなたのアプリがバックグラウンド活動の実行を停止して最適な時に再開すべきかどうかを指し示しているブール値。
A value of type TimeInterval, which specifies a range of time during which the background activity may occur.
型TimeIntervalの値、それはその間にバックグラウンド活動が起こるかもしれない時間の範囲を指定します。
These constants indicate whether background activity has been completed successfully or whether additional processing should be deferred until a more optimal time.
これらの定数は、バックグラウンド活動がうまく完了されたかどうかまたは追加的処理が最適な時間まで延期されるべきかどうかを指し示します。