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

getInputStream(_:outputStream:)

Creates a pair of input and output streams for the receiver and returns a Boolean value that indicates whether they were retrieved successfully. レシーバに対する入力と出力ストレームのペアを作成して、それらがうまく取ってこられたかどうかを指し示すブール値を返します。

Declaration 宣言

func getInputStream(_ inputStream: UnsafeMutablePointer<InputStream?>?, 
       outputStream: UnsafeMutablePointer<OutputStream?>?) -> Bool

Parameters パラメータ

inputStream

Upon return, the input stream for the receiver. Pass NULL if you do not need this stream. 戻りでは、レシーバに対する入力ストリーム。NULLを渡してください、もしあなたがこのストリームを必要としないならば。

outputStream

Upon return, the output stream for the receiver. Pass NULL if you do not need this stream. 戻りでは、レシーバに対する出力ストリーム。NULLを渡してください、もしあなたがこのストリームを必要としないならば。

Return Value 戻り値

true if the streams are created successfully, otherwise false. true、もしストリームがうまく作成されるならば、そうでなければfalse

Discussion 議論

After this method is called, no delegate callbacks are called by the receiver. このメソッドが呼び出された後、どんな委任先コールバックもレシーバによって呼び出されることはありません。

See Also 参照

Configuring Network Services ネットワークサービスを構成設定する