Rogue Wave banner
Previous fileTop of DocumentContentsIndexNext file

RWTPCValQueuePrioritized<Type>


RWTPCValQueuePrioritized<Type> RWTPCValBufferBasePrioritized <Type,RWTPriorityDecorator<Type>>

Data Type and Member Function Indexes
(exclusive of constructors and destructors)

None

Package

Interthread Communication

Header File

#include <rw/itc/RWTPCValQueuePrioritized.h> 

Description

RWTPCValQueuePrioritized<Type> is a first-in-first-out (FIFO) queue that provides producer-consumer synchronization semantics for exchanging prioritized values between cooperating threads.

In the producer-consumer synchronization model, reader threads (consumers) are blocked while the queue is empty, and writer threads (producers) are blocked while the queue is full. The queue is considered full when the number of unread entries equals or exceeds some user-specified maximum capacity.

The write operations inherited by this class bind a priority value to each data value prior to storing that value in an internal buffer. The priority value is used by these write operations to determine a value's insertion point within the queue, such that the set of unread values will be retrieved in priority order when they are eventually read from the queue. A new value is retrieved after any previously inserted values of the same priority.

Example

This code produces the following output:

Public Constructor

RWTPCValQueuePrioritized(size_t maxCapacity=0,
RWBoolean isOpen=TRUE);

See Also

RWTPCValBufferBasePrioritized<Type,PriorityDecorator>,
RWTPCValStackPrioritized<Type>, RWTPCValQueueGuardedPrioritized<Type>



Previous fileTop of DocumentContentsIndexNext file

©Copyright 2000, Rogue Wave Software, Inc.
Contact Rogue Wave about documentation or support issues.