2.2.5.2.6.2 Queue

The Queue container specifies a data structure for accessing a collection of elements based on a first-in, first-out order.

XML Element: <QUE>

XML Contents: Results of serializing all elements of the queue, starting with the first element.

Example:

 <!-- serialization of a queue created with the following pseudo code:
   s = new queue();  s.enqueue(1);  s.enqueue(2);  s.enqueue(3);  -->
 <Obj RefId="RefId-0">
   <TN RefId="RefId-0">
     <T>System.Collections.Queue</T>
     <T>System.Object</T>
   </TN>
   <QUE>
     <I32>1</I32>
     <I32>2</I32>
     <I32>3</I32>
   </QUE>
 </Obj>