OctoTorrent.Client.StoppingMode.Tick C# (CSharp) Method

Tick() public method

public Tick ( int counter ) : void
counter int
return void
        public override void Tick(int counter)
        {
            if (_handle.WaitOne(0, true) == false)
                return;

            _handle.Close();
            Manager.Mode = new StoppedMode(Manager);
        }