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

listener:shouldAcceptNewConnection:

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

Declaration 宣言

- (BOOL)listener:(NSXPCListener *)listener 
shouldAcceptNewConnection:(NSXPCConnection *)newConnection;

Discussion 議論

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

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

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 関連文書