LeanEngine.Engine.ProcessReqQty C# (CSharp) Method

ProcessReqQty() private method

private ProcessReqQty ( ItemFlow itemFlow ) : void
itemFlow LeanEngine.Entity.ItemFlow
return void
        private void ProcessReqQty(ItemFlow itemFlow)
        {
            IOAE processor = this.GetProcessor(itemFlow.Flow.FlowStrategy.Strategy);
            if (processor != null)
                processor.ProcessReqQty(itemFlow);
        }