Instance Method
インスタンスメソッド
waitForDataInBackgroundAndNotifyForModes:
Asynchronously checks to see if data is available.
データが利用可能かどうかを知るために非同期的に調べます。
Parameters
パラメータ
modes
The runloop modes in which the data available notification can be posted.
そこにおいてデータ利用可能通知が投函されることができる実行ループモード
Discussion
議論
When the data becomes available, this method posts a NSFileHandleDataAvailableNotification
notification on the current thread. This method differs from waitForDataInBackgroundAndNotify
in that modes
specifies the run-loop mode (or modes) in which NSFileHandleDataAvailableNotification
can be posted.
データが利用可能になる場合、このメソッドはNSFileHandleDataAvailableNotification
通知を現在のスレッド上で投函します。このメソッドは、waitForDataInBackgroundAndNotify
とは、modes
がそこにおいてNSFileHandleDataAvailableNotification
が投函されることが可能な実行ループモード(または複数のモード)を指定することにおいて異なります。
You must call this method from a thread that has an active run loop.
あなたは、このメソッドをアクティブ実行ループを持つスレッドから呼び出さなければなりません。
See Also
参照
Reading Asynchronously with Notifications
通知で非同期に読み出す
- acceptConnectionInBackgroundAndNotify
Accepts a socket connection (for stream-type sockets only) in the background and creates a file handle for the “near” (client) end of the communications channel.
バックグラウンドにおいてソケット接続を(ストリーム型ソケットのみに対して)試みます、そして通信経路の終端(クライアント)「近く」に対するファイルハンドルを作成します。
- acceptConnectionInBackgroundAndNotifyForModes:
Accepts a socket connection (for stream-type sockets only) in the background and creates a file handle for the “near” (client) end of the communications channel.
バックグラウンドにおいてソケット接続を(ストリーム型ソケットのみに対して)試みます、そして通信経路の終端(クライアント)「近く」に対するファイルハンドルを作成します。
- readInBackgroundAndNotify
Reads from the file or communications channel in the background and posts a notification when finished.
バックグラウンドにおいてファイルまたは通信経路から読み込みます、そして終了した時ある通知を投函します。
- readInBackgroundAndNotifyForModes:
Reads from the file or communications channel in the background and posts a notification when finished.
バックグラウンドにおいてファイルまたは通信経路から読み込みます、そして終了した時ある通知を投函します。
- readToEndOfFileInBackgroundAndNotify
Reads to the end of file from the file or communications channel in the background and posts a notification when finished.
バックグラウンドにおいてファイルまたは通信経路からファイルの終端まで読み込みます、そして終了した時にある通知を投函します。