PulseAll() 공개 메소드

public PulseAll ( ) : void
리턴 void
 public void countDown()
 {
     lock (mutex)
     {
         if (remaining > 0)
         {
             remaining--;
             if (remaining <= 0)
             {
                 mutex.PulseAll();
             }
         }
     }
 }