Overview
概要
The URLSessionTask
class is the base class for tasks in a URL session. Tasks are always part of a session; you create a task by calling one of the task creation methods on a URLSession
instance. The method you call determines the type of task.
URLSessionTask
クラスは、あるURLセッションの中のタスクに対する基本クラスです。タスクは常にあるセッションの一部です;あなたはタスクをURLSession
インスタンス上でタスク作成メソッドを呼び出すことによって作成します。あなたが呼び出すメソッドは、タスクの種類を決定します。
After you create a task, you start it by calling its resume()
method. The session then maintains a strong reference to the task until the request finishes or fails; you don’t need to maintain a reference to the task unless it’s useful for your app’s internal bookkeeping.
あなたがタスクを作成する後、あなたはそれをそれのresume()
メソッドを呼び出すことによって開始します。セッションは、それからそのタスクへの強い参照をリクエストが終了または失敗するまで保守します;あなたはタスクへの参照を保守する必要はありません、それがあなたのアプリのもつ内部的簿記に役立つ場合を除いて。