Instance Method インスタンスメソッド

urlSession(_:readClosedFor:)

Tells the delegate that the read side of the underlying socket has been closed. 委任先に、基礎をなすソケットの読み出し側が閉じられたことを伝えます。

Declaration 宣言

optional func urlSession(_ session: URLSession, 
           readClosedFor streamTask: URLSessionStreamTask)

Parameters パラメータ

session

The session containing the stream task that closed reads. 読み出しを閉じたストリームタスクを含んでいるセッション。

streamTask

The stream task that closed reads. 読み出しを閉じたストリームタスク。

Discussion 議論

This method may be called even if no reads are currently in progress. This method does not indicate that the stream reached end-of-file (EOF), such that no more data can be read. このメソッドは、たとえひとつも読み出しが今は進行中でないとしても呼び出されるかもしれません。このメソッドはストリームが、これ以上どんなデータも読み出されることができないことのような、ファイル終端(EOF)に達したことを指し示しません。

See Also 参照

Handling Closing Events 閉じるイベントを取り扱う