A class that enumerates the storage item states.
Inbound | Storage item Inbound state. |
Outbound | Storage item Outbound state. |
Stored | Storage item Stored state. |
Unassigned | Storage item Unassigned state. |
static readonly int Inbound
Storage item Inbound state.
The assignedSlot property is set to a valid slot, but the currentSlot property is null. In other words, the item has been assigned to a slot, but has not yet arrived in the slot.static readonly int Outbound
Storage item Outbound state.
The currentSlot property refers to a valid slot, but the assignedSlot property refers to different slot or null. In other words, the item has been stored in a slot, and has been reassigned, either to a different slot, or to null (it is about to exit the system).static readonly int Stored
Storage item Stored state.
The assignedSlot and currentSlot properties are both set to the same slot. In other words, the item has been stored in a slot, and has not been assigned to any other slot.static readonly int Unassigned
Storage item Unassigned state.
Both the assignedSlot and currentSlot properties are null. In other words, the item is neither assigned to nor stored in a slot.