di-huang / Amazon-Warehouse-System

Simplified version of the Amazon Warehouse System.
1 stars 1 forks source link

OrderQueue and PendingOrders #19

Closed weigui closed 7 years ago

weigui commented 7 years ago

What are the differences?

di-huang commented 7 years ago

not much. orderQueue holds scheduled orders ; pendingOrders holds the orders which already arrived (1 / 10 ticks )and are waitting for system to process. Actually, we can just add all orders to pendingOrders if you want.

weigui commented 7 years ago

Got it