CQueue Class
A version of this page is also available for
4/8/2010
This class implements a simple queue abstract data type.
The queue contains a finite number of objects, and a semaphore controls access to these objects.
The semaphore is created with an initial count (N).
Each time an object is added, a call to the Win32 WaitForSingleObject function is made on the handle of the semaphore.
When this function returns, it reserves a slot in the queue for the new object. If no slots are available, the member function blocks until it becomes available.
Each time an object is removed from the queue, the Win32 ReleaseSemaphore function is called on the handle of the semaphore, thus freeing a slot in the queue. If no objects are present in the queue, the function blocks until an object has been added.
Member Functions
Member function | Description |
---|---|
Constructs a CQueue object. |
|
Retrieves an object from the queue. |
|
Puts an object into the queue. |
Requirements
Windows Embedded CE | Windows CE 2.12 and later |
Windows Mobile | Windows Mobile Version 5.0 and later |
Note | Microsoft DirectShow applications and DirectShow filters have different include file and Library requirements For more information, see Setting Up the Build Environment |