Sequential data queues

Entries on a sequential data queue on the server are removed in first-in first-out (FIFO) or last-in first-out (LIFO) sequence.

The BaseDataQueue and DataQueue classes provide the following methods for working with sequential data queues:

The BaseDataQueue class provides additional methods for retrieving the attributes of the data queue.

Examples: Working with sequential data queues

The following sequential data queue examples illustrate how a producer puts items on a data queue and how a consumer takes the items off the queue and processes them:

Example: Using DataQueue classes to put data on a queue

Example: Using DataQueue classes to read entries off a data queue