- closeRead
Completes any enqueued reads and writes, and then closes the read side of the underlying socket.
あらゆるエンキューされた読み出しおよび書き出しを完了します、そしてそれから基礎をなすソケットの読み出し側を閉じます。
Availability 有効性
Technology
- (void)closeWrite;
You may continue to read data using the read
method after calling this method. Any calls to write
after calling this method will result in an error.
あなたは、データの読み出しの継続をread
メソッドを使ってこのメソッドを呼び出す後にするかもしれません。このメソッドを呼び出す後のwrite
に対するあらゆる呼び出しは、エラーという結果になるでしょう。
Because the server may continue to write bytes to the client, it is recommended that you continue reading until the stream reaches end-of-file (EOF). サーバがクライアントへのバイトの書き出しを継続するかもしれないことから、あなたが読み出しをストリームがファイル終端(EOF)に達するまで継続することは推奨されます。
- closeRead