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

connection:shouldMakeNewConnection:

Returns a Boolean value that indicates whether the parent connection should allow a given new connection to be created. あるブール値を返します、それは親接続がある与えられた新しい接続を作成されることを許可されるべきかどうかを指し示します。

Declaration 宣言

- (BOOL)connection:(NSConnection *)ancestor 
shouldMakeNewConnection:(NSConnection *)conn;

Parameters パラメータ

parentConnection

The connection object for which the receiver is the delegate. それに対してこのレシーバが委任先であるところの接続。

newConnnection

The new connection. 新しい接続。

Return Value 戻り値

YES if parentConnection should allow newConnnection to be created and set up, NO if parentConnection should refuse and immediately release newConnection. YES、もしparentConnectionnewConnnectionに作成されてそして準備されることを許可するべきならば、NO、もしparentConnectionが辞退してそして直ぐにnewConnectionを開放すべきならば。

Discussion 議論

Use this method to limit the amount of NSConnection objects created in your application or to change the parameters of child NSConnection objects. このメソッドを使って、あなたのアプリケーションにおいて作成されたNSConnectionオブジェクトの量を制限してください、または子NSConnectionオブジェクトのパラメータを変更してください。

Use NSConnectionDidInitializeNotification instead of this delegate method if possible. NSConnectionDidInitializeNotificationをこの委任先メソッドの代わりに使ってください、もし可能ならば。

See Also 参照

Responding to a Connection 接続に応答する