The session of the stream task that has been completed. 完了したストリームタスクのセッション。
Instance Method
インスタンスメソッド
url
urlSession(_:streamTask:didBecome: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 宣言
optional func urlSession(_ session: URLSession
,
streamTask: URLSessionStreamTask
,
didBecome inputStream: InputStream
,
outputStream: OutputStream
)
Parameters パラメータ
session
streamTask
The stream task that has been completed. 完了したストリームタスク。
inputStream
The created input stream. This
Input
object is unopened. 作成した入力ストリーム。このStream Input
オブジェクトは開かれていません。Stream outputStream
The created output stream. This
Output
object is unopened 作成した出力ストリーム。このStream Output
オブジェクトは開かれていません。Stream
Discussion 議論
This delegate method will only be called after all enqueued reads and writes for the stream task have been completed. この委任先メソッドは、そのストリームタスクに対する全てのエンキューされた読み出しおよび書き込みが完了した後に呼び出されるだけです。