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

listener(_:shouldAcceptNewConnection:)

Accepts or rejects a new connection to the listener. リスナーに対するある新しい接続を承諾または拒否します。

Declaration 宣言

optional func listener(_ listener: NSXPCListener, 
shouldAcceptNewConnection newConnection: NSXPCConnection) -> Bool

Discussion 議論

To accept the connection, first configure the connection if desired, then call resume() on the new connection, then return true. 接続を承諾するには、最初に接続を構成設定してくださいお好みで、それからresume()を新しい接続上で呼び出してください、それからtrueを返してください。

To reject the connect, return a value of false. This causes the connection object to be invalidated. 接続を拒否するには、falseの値を返してください。これは、接続オブジェクトを無効にされるようにします。

In this method, you can also set up properties on the connection object, such as its exported object and interfaces. Be sure to call resume() when you are finished configuring the connection object and are ready for it to receive messages. このメソッドにおいて、あなたはまた接続オブジェクト上でプロパティを設定します、たとえばそれのエクスポートオブジェクトおよびインターフェイスなど。resume()を呼び出すことを確実にしてください、あなたが接続オブジェクトの構成設定を完了するそしてそれがメッセージを受信する準備ができる場合は。

See Also 参照

Related Documentation 関連文書