The session of the stream task that has been completed. 完了したストリームタスクのセッション。
Instance Method
インスタンスメソッド
URLSession:
URLSession:streamTask:didBecomeInputStream:outputStream:
Tells the delegate that the stream task has been completed as a result of the stream task calling the
captureStreams
method.
委任先に、ストリームタスクがcaptureStreams
メソッドを呼び出す結果、ストリームタスクが完了したことを伝えます。
Availability 有効性
- iOS 9.0+
- iPadOS 9.0+
- macOS 10.11+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
- (void)URLSession:(NSURLSession
*)session
streamTask:(NSURLSessionStreamTask
*)streamTask
didBecomeInputStream:(NSInputStream
*)inputStream
outputStream:(NSOutputStream
*)outputStream;
Parameters パラメータ
session
streamTask
The stream task that has been completed. 完了したストリームタスク。
inputStream
The created input stream. This
NSInput
object is unopened. 作成した入力ストリーム。このStream NSInput
オブジェクトは開かれていません。Stream outputStream
The created output stream. This
NSOutput
object is unopened 作成した出力ストリーム。このStream NSOutput
オブジェクトは開かれていません。Stream
Discussion 議論
This delegate method will only be called after all enqueued reads and writes for the stream task have been completed. この委任先メソッドは、そのストリームタスクに対する全てのエンキューされた読み出しおよび書き込みが完了した後に呼び出されるだけです。