Type Property 型プロパティ

NSWillBecomeMultiThreaded

Posted when the first thread is detached from the current thread. The NSThread class posts this notification at most once—the first time a thread is detached using detachNewThreadSelector(_:toTarget:with:) or the start() method. Subsequent invocations of those methods do not post this notification. Observers of this notification have their notification method invoked in the main thread, not the new thread. The observer notification methods always execute before the new thread begins executing. 最初のスレッドが現在のスレッドから切り離される時に投函されます。NSThread クラスはこの通知を最大一度だけ — スレッドがdetachNewThreadSelector(_:toTarget:with:)またはstart()メソッドを使って分離される最初の時に投函します。これらのメソッドの続いて起こる発動は、この通知を投函しません。この通知のオブザーバは、メインスレッドにおいて発動されるそれらの通知メソッドを持ちます、新しいスレッドではなく。オブザーバ通知メソッドは、常に新しいスレッドが遂行を始める前に遂行します。

Declaration 宣言

static let NSWillBecomeMultiThreaded: NSNotification.Name

Discussion 議論

This notification does not contain a notification object or a userInfo dictionary. この通知は、通知オブジェクトまたはuserInfo辞書を含みません。

See Also 参照

Foundation ファウンデーション