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

streamTaskWithHostName:port:

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

Declaration 宣言

- (NSURLSessionStreamTask *)streamTaskWithHostName:(NSString *)hostname 
                                              port:(NSInteger)port;

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 ストリームタスクをセッションに加える