- URLSession:writeClosedForStreamTask:
Tells the delegate that the write side of the underlying socket has been closed.
委任先に、基礎をなすソケットの書き込み側が閉じられたことを伝えます。
Availability 有効性
Technology
- (void)URLSession:(NSURLSession
*)session
readClosedForStreamTask:(NSURLSessionStreamTask
*)streamTask;
session
The session containing the stream task that closed reads. 読み出しを閉じたストリームタスクを含んでいるセッション。
streamTask
The stream task that closed reads. 読み出しを閉じたストリームタスク。
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)に達したことを指し示しません。
- URLSession:writeClosedForStreamTask: