FastQuant.DataSimulator.Disconnect C# (CSharp) Method

Disconnect() public method

public Disconnect ( ) : void
return void
        public override void Disconnect()
        {
            if (!IsDisconnected)
            {
                this.exit = true;
                while (this.running)
                    Thread.Sleep(1);
                Clear();
                Status = ProviderStatus.Disconnected;
            }
        }