FIFOQueue is a component that allows any number of items of data to be stored, ready for use by other components. FIFO stands for First In First Out, which refers to the order in which data which has been added to a FIFOQueue can be retrieved. Items of data are added into a FIFOQueue component one at a time, and are retrieved from the component in the same order in which they were added (ie the first item added is retrieved first, then the second item etc.)
Note that it is also possible to randomize the order of data items in a FIFOQueue.
To add an item of data, provide the item of data using the newObject property. The item of data will be added to those held in the queue property. The topOfQueue property (which always records the next item available for retrieval from the queue) will also change if the new item of data is being added to an empty queue.
To retrieve the next item of available data from the queue, supply any value to the triggerDiscardTopOfQueue property. This will trigger an item of data to be removed from the queue property, and will cause the topOfQueue property to be updated to reflect the next item of available data. The item of data which has just been retrieved from the queue will appeare on property lastDiscardedObject.
To randomize the order of items in the queue, provide any value to the triggerRandomizeQueue property.
To clear the queue of data, provide any value to the triggerDiscardQueue property.