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

RWTPCValBufferBase<Type>

Module:  Threads   Package:  Interthread Communication


RWTPCValBufferBase<Type> RWPCBufferBase

Local Index

Members

Header File

#include <rw/itc/RWTPCValBufferBase.h>

Description

RWTPCValBufferBase<Type> is the base class for the family of classes that provide buffered producer-consumer synchronization semantics for exchanging of values between cooperating threads.

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

Public Destructor

virtual
~RWTPCValBufferBase();

Public Member Functions

Type
peek();
RWWaitStatus
peek(Type& result, unsigned long milliseconds);
Type
read();
RWWaitStatus
read(Type& result, unsigned long milliseconds);
bool 
tryPeek(Type& result);
bool
tryRead(Type& result);
bool 
tryWrite(const Type& value);
void 
write(const Type& value);
RWWaitStatus 
write(const Type& value, unsigned long milliseconds);

See Also

RWPCBufferBase, RWTPCValQueue<Type>, RWTPCValStack<Type>, RWTPCValBufferBaseDecorated<Type,Decorator>



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.