In other words I have a thread that starts and calls waitHandle.Set()
multiple times. Then I start several threads and each is waiting on that WaitHandle
. Will X of the them be signaled where X is the number of times the original thread called waitHandle.Set()
?
Is there a structure that supports what I'm trying to accomplish more closely?