Semaphore.Semaphore C# (CSharp) Method

Semaphore() public method

public Semaphore ( ) : System
return System
    public Semaphore()
    {
        Join join = Join.Create();
        join.Initialize(out Signal);
        join.Initialize(out Wait);
        join.When(Wait).And(Signal).Do(delegate { });
    }
Semaphore