Enumeration
列挙
URLSessionTask.State
Constants for determining the current state of a task.
タスクの現在の状態を決定するための定数。
Topics
話題
Task States
タスク状態
case running
The task is currently being serviced by the session.
タスクは、現在はセッションによってサービスされています。
case suspended
The task was suspended by the app.
タスクは、アプリによって一時停止されました。
case canceling
The task has received a cancel
message.
タスクは、cancel
メッセージを受け取りました。
case completed
The task has completed (without being canceled), and the task's delegate receives no further callbacks.
タスクは、完了しました(取り消されることなしに)、そしてタスクのもつ委任先は少しもこれより先のコールパックを受け取りません。
See Also
参照
Controlling the Task State
タスク状態を制御する
func resume()
Resumes the task, if it is suspended.
タスクを再開します、もしれそが一時停止されるならば。
var state: URLSessionTask.State
The current state of the task—active, suspended, in the process of being canceled, or completed.
タスクの現在の状態 — 活動中、一時停止、取り消される処理中、または完了した。
var priority: Float
The relative priority at which you’d like a host to handle the task, specified as a floating point value between 0.0
(lowest priority) and 1.0
(highest priority).
それであなたがホストにそのタスクを取り扱って欲しい相対的優先度、0.0
(最低優先度)と1.0
(最高優先度)の間の浮動小数点値として指定されます。