SourcePro® 2024.1 |
SourcePro® API Reference Guide |
Waits for the next IOU in a group of IOUs to become redeemable. More...
#include <rw/itc/RWTIOUTrap.h>
Public Member Functions | |
RWTIOUTrap (const RWTIOUTrap< Redeemable > &second) | |
RWTIOUTrap (RWStaticCtor) | |
RWTIOUTrap (void) | |
~RWTIOUTrap (void) | |
RWWaitStatus | getNext (RWTIOUResult< Redeemable > &iouResult, unsigned long milliseconds) |
RWTIOUResult< Redeemable > | getNext (void) |
bool | isEmpty (void) const |
RWTIOUTrap< Redeemable > & | operator= (const RWTIOUTrap< Redeemable > &second) |
void | setTrap (RWTIOUResult< Redeemable > iou) const |
bool | tryGetNext (RWTIOUResult< Redeemable > &iouResult) |
Public Member Functions inherited from RWHandleBase | |
bool | isValid (void) const |
bool | operator!= (const RWHandleBase &second) const |
bool | operator== (const RWHandleBase &second) const |
Additional Inherited Members | |
Protected Member Functions inherited from RWHandleBase | |
RWHandleBase (const RWHandleBase &second) | |
RWHandleBase (RWBodyBase *body) | |
RWHandleBase (RWStaticCtor) | |
RWHandleBase (void) | |
~RWHandleBase (void) | |
RWBodyBase & | body (void) const |
RWHandleBase & | operator= (const RWHandleBase &second) |
RWTIOUTrap allows you to wait for the next IOU in a group of IOUs to become redeemable. For example, it can be used to wait on IOU results from a number of RWTThreadIOUFunction instances. You may either block waiting for the next IOU to become available, wait with a time-out, or poll for the next IOU.
RWTIOUTrap assists in the management of a number of RWTIOUResult instances. Without an IOU trap, you would have to poll each of a number of IOUs in turn, testing to see when the next one becomes redeemable. This kind of polling loop, however, is inefficient in a multithreaded environment. With an IOU trap, you merely wait for the trap to provide you with the next redeemable IOU.
Each IOU you wish to trap must first be registered using the setTrap() member function. Once an IOU is registered, it automatically notifies the trap when it becomes redeemable. RWTIOUTrap uses a producer-consumer queue to store each IOU as it notifies the trap that it is redeemable. An RWTIOUResult is inserted into the queue by the thread that closed it, and taken off the queue when the trap's getNext() member is called.
The IOU trap is implemented as a handle-body object. The RWTIOUTrap is the handle for an IOU trap object. These handles can be passed and shared by value. The actual trap object is deleted when the last handle that references it is destroyed.
|
inline |
Constructs an RWTIOUTrap instance bound to a new body instance.
|
inline |
Constructs a static RWTIOUTrap handle instance. This constructor does not construct a body instance, and does not change the handle instance.
|
inline |
Copy constructor. Constructs a new handle instance and attaches it to the trap instance, if any, pointed to by second, and increments the trap's reference count.
|
inline |
Destroys the handle and decrements the reference count of the current trap instance, if any, deleting the trap if its reference count equals zero.
|
inline |
Gets the next redeemable RWTIOUResult, and if none are ready, waits until one becomes available. Returns with RW_THR_COMPLETED status if an IOU becomes redeemable within the specified number of milliseconds; otherwise the returned status is RW_THR_TIMEOUT.
|
inline |
Gets the next redeemable RWTIOUResult, and if none are ready, waits until one becomes available.
|
inline |
Returns true
if the queue is empty, otherwise returns false
.
|
inline |
Detaches this handle from its current trap instance, if any, decrementing the trap's reference count and deleting the trap if the count equals zero. It then attaches to the trap instance, if any, pointed by second, and increments the new trap's reference count.
void RWTIOUTrap< Redeemable >::setTrap | ( | RWTIOUResult< Redeemable > | iou | ) | const |
Traps the given IOU when it becomes redeemable.
|
inline |
Gets next redeemable RWTIOUResult if one is available. If an IOU has already been trapped, returns true
and assigns the redeemable IOU to the iouResult argument, otherwise returns false
.
Copyright © 2024 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved. |