Accord.Audio.AudioSourceMixer.WaitForStop C# (CSharp) 메소드

WaitForStop() 공개 메소드

Wait for audio source has stopped.
Waits for source stopping after it was signaled to stop using SignalToStop method.
public WaitForStop ( ) : void
리턴 void
        public void WaitForStop()
        {
            if (thread != null)
            {
                // wait for thread stop
                thread.Join();
                thread = null;
            }
        }