Enumeration Case 列挙ケース

URLSession.ResponseDisposition.becomeStream

Convert the response for this request to use a URLSessionStreamTask. このリクエストに対する応答を、URLSessionStreamTaskを使うように変換します。

Declaration 宣言

case becomeStream = 3

Discussion 議論

When used with the completion handler from urlSession(_:dataTask:didReceive:completionHandler:), this disposition converts the task to a stream task. This will result in your delegate’s urlSession(_:dataTask:didBecome:) being called to provide you with the new stream task that supersedes the current task. urlSession(_:dataTask:didReceive:completionHandler:)からの完了ハンドラで使われる場合、この意向はタスクをストリームタスクに変換します。これは、あなたの委任先のもつurlSession(_:dataTask:didBecome:)が呼び出されるという結果になることで、あなたに現在のタスクに取って代わる新しいストリームタスクを提供します。

See Also 参照

Task Dispositions タスク意向