Global Variable
グローバル変数
NSConnectionDidDieNotification
Posted when an NSConnection
object is deallocated or when it’s notified that its NSPort
object has become invalid. The notification object is the NSConnection
object. This notification does not contain a userInfo
dictionary.
NSConnection
オブジェクトがデアロケートされる場合、またはそれのNSPort
オブジェクトが無効になることを通知される場合に投函されます。通知オブジェクトは、NSConnection
オブジェクトです。この通知は、userInfo
辞書を含みません。
Declaration
宣言
NSString
*const NSConnectionDidDieNotification;
Discussion
議論
An NSConnection
object attached to a remote NSSocketPort
object cannot detect when the remote port becomes invalid, even if the remote port is on the same machine. Therefore, it cannot post this notification when the connection is lost. Instead, you must detect the timeout error when the next message is sent.
リモートNSSocketPort
オブジェクトに添付されたNSConnection
オブジェクトは、リモートポートが無効になる時に検出できません、たとえリモートポートが同じマシン上にあるとしても。それゆえ、それはこの通知を投函することが、接続が失われる時にできません。代わりに、あなたがタイムアウトエラーを検知しなければなりません、次にメッセージが送信される場合は。
The NSConnection
object posting this notification is no longer useful, so all receivers should unregister themselves for any notifications involving the NSConnection
object.
この通知を投函しているNSConnection
オブジェクトはもはや役に立ちません、なので全てのレシーバは、それら自身をNSConnection
オブジェクトを発動しているあらゆる通知に対して登録解除すべきです。
See Also
参照
Related Documentation
関連文書
NSPortDidBecomeInvalidNotification
Posted from the method, which is invoked when the NSPort
is deallocated or when it notices that its communication channel has been damaged. The notification object is the NSPort
object that has become invalid. This notification does not contain a userInfo
dictionary.
通知オブジェクトは、無効になったNSPort
オブジェクトです。この通知は、userInfo
辞書を含みません。