Discussion
議論
The network service type provides a hint to the operating system about what the underlying traffic is used for. This hint enhances the system's ability to prioritize traffic, determine how quickly it needs to wake up the cellular or Wi-Fi radio, and so on. By providing accurate information, you improve the ability of the system to optimally balance battery life, performance, and other considerations.
ネットワークサービス型は、根底にあるトラフィックが何に対して使われるかについてのヒントをオペレーティングシステムに提供します。このヒントは、トラフィックの優先順位をつける、どのくらい素早くそれはセルラーまたはWi-Fiを起こす必要があるか、などシステムの持つ能力を高めます。間違いのない情報を提供することによって、あなたはシステムの能力を改善して、バッテリーライフ、性能、そして他の考慮すべき事柄の最も望ましい均衡をとります。
For example, specify the NSURLRequest.NetworkServiceType.background
type if your app is performing a download that wasn’t requested by the user, like prefetching content so that it’s available when the user chooses to view it.
例えば、NSURLRequest.NetworkServiceType.background
型を指定してください、もしあなたのアプリがユーザによって要請されなかったダウンロードを実行しているならば、内容をあらかじめ取ってくるような、それでそれはユーザがそれを眺めるのを選ぶ時に利用可能です。
This setting can also affect the Wi-Fi Quality of Service (QoS) Priority.
この設定はまた、Wi-Fiの「Quality of Service(QoS)優先度」にも影響する可能性があります。
The default value is NSURLRequest.NetworkServiceType.default
.
省略時の値は、NSURLRequest.NetworkServiceType.default
です。