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

streamTask(withHostName:port:)

Creates a task that establishes a bidirectional TCP/IP connection to a specified hostname and port. あるタスクを作成します、それはある双方向のTCP/IP接続をある指定されたホスト名とポートへと確立します。

Declaration 宣言

func streamTask(withHostName hostname: String, 
           port: Int) -> URLSessionStreamTask

Parameters パラメータ

hostname

The hostname of the connection endpoint. 接続エンドポイントのホスト名。

port

The port of the connection endpoint. 接続エンドポイントのポート。

Return Value 戻り値

The new session stream task. 新しいセッションストリームタスク。

Discussion 議論

After you create the task, you must start it by calling its resume() method. あなたがタスクを作成する後、あなたはそれを、それのresume()メソッドを呼び出すことによって開始しなければなりません。

See Also 参照

Adding Stream Tasks to a Session ストリームタスクをセッションに加える