- signal
Signals the condition, waking up one thread waiting on it.
条件を合図します、それに関して待機している1つのスレッドを起こします。
Availability 有効性
Technology
- (void)broadcast;
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. 競合状態を防ぐために、あなたはレシーバがロックされる間にのみ、このメソッドを発動すべきです。
- signal