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

acceptConnectionInBackgroundAndNotify(forModes:)

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. バックグラウンドにおいてソケット接続を(ストリーム型ソケットのみに対して)試みます、そして通信経路の終端(クライアント)「近く」に対するファイルハンドルを作成します。

Declaration 宣言

func acceptConnectionInBackgroundAndNotify(forModes modes: [RunLoop.Mode]?)

Parameters パラメータ

modes

The runloop modes in which the connection accepted notification can be posted. 接続受理通知が投函されることが可能な実行ループのモード。

Discussion 議論

See acceptConnectionInBackgroundAndNotify() for details of how this method operates. This method differs from acceptConnectionInBackgroundAndNotify() in that modes specifies the run-loop mode (or modes) in which NSFileHandleConnectionAccepted can be posted. acceptConnectionInBackgroundAndNotify()をこのメソッドを操作する方法の詳細として見てください。このメソッドは、acceptConnectionInBackgroundAndNotify()とは、modesがそこにおいてNSFileHandleConnectionAcceptedが投函されることが可能な実行ループモード(または複数のモード)を指定することにおいて異なります。

You must call this method from a thread that has an active run loop. あなたは、このメソッドをアクティブ実行ループを持つスレッドから呼び出さなければなりません。

See Also 参照

Reading Asynchronously with Notifications 通知で非同期に読み出す

Related Documentation 関連文書