FastQuant.OutputWriter.Clear C# (CSharp) Method

Clear() public method

public Clear ( ) : void
return void
        public void Clear()
        {
            if (this.queue != null)
            {
                this.outputManager.Framework.EventBus.CommandPipe.Remove(this.queue);
                this.queue.Clear();
                this.queue = null;
            }
        }