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

broadcast()

Signals the condition, waking up all threads waiting on it. 条件を合図します、それに関して待機している全てのスレッドを起こします。

Declaration 宣言

func broadcast()

Discussion 議論

If no threads are waiting on the condition, this method does nothing. スレッドが条件を待っているならば、このメソッドは何もしません。

To avoid race conditions, you should invoke this method only while the receiver is locked. 競合状態を防ぐために、あなたはレシーバがロックされる間にのみ、このメソッドを発動すべきです。

See Also 参照

Signaling Waiting Threads スレッドの待機を合図する