Rogue Wave banner
Previous fileTop of DocumentContentsIndex pageNext file
Threads Module Reference Guide
Rogue Wave web site:  Home Page  |  Main Documentation Page

RWTPCValStackPrioritized<Type>

Module:  Threads   Package:  Interthread Communication


RWTPCValStackPrioritized<Type> RWTPCValBufferBasePrioritized<Type,RWTPriorityDecorator<Type>>

Local Index

Members

Header File

#include <rw/itc/RWTPCValStackPrioritized.h> 

Description

RWTPCValStackPrioritized<Type> is a last-in-first-out (LIFO) stack 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 stack is empty, and writer threads (producers) are blocked while the stack is full. The stack 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 stack, 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 before any previously inserted values of the same priority.

Example

See the example given under RWTPCValQueuePrioritized<Type>.

Public Constructor

RWTPCValStackPrioritized(size_t maxCapacity=0,
bool isOpen=true);

Public Destructor

~RWTPCValStackPrioritized();

See Also

RWTPCValBufferBasePrioritized<Type,PriorityDecorator>, RWTPCValStack<Type>, RWTPCValQueuePrioritized<Type>, RWTPCValStackGuardedPrioritized<Type>



Previous fileTop of DocumentContentsIndex pageNext file

© Copyright Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave and SourcePro are registered trademarks of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.
Contact Rogue Wave about documentation or support issues.