public void Push(CommandWithQuotation item) { lock (this._Lock) { this._Pool.Push(item); } }
public void AddQuotation(CommandWithQuotation quotation) { if (this._Container.Count == 0) { return; } this._Quotations.Enqueue(quotation); this._SendQuotationEvent.Set(); }