Enumeration Case
列挙ケース
URLSessionTask.State.canceling
The task has received a cancel
message.
タスクは、cancel
メッセージを受け取りました。
Discussion
議論
The delegate may or may not have received a urlSession(_:task:didCompleteWithError:)
message yet. A task in this state is not subject to timeouts.
委任先は、urlSession(_:task:didCompleteWithError:)
を受けとったかもしれないしまだかもしれません。この状態におけるタスクは、タイムアウトの影響を受けません。
See Also
参照
Task States
タスク状態
case running
The task is currently being serviced by the session.
タスクは、現在はセッションによってサービスされています。
case suspended
The task was suspended by the app.
タスクは、アプリによって一時停止されました。
case completed
The task has completed (without being canceled), and the task's delegate receives no further callbacks.
タスクは、完了しました(取り消されることなしに)、そしてタスクのもつ委任先は少しもこれより先のコールパックを受け取りません。