#include <Message_Queue_T.h>
Collaboration diagram for ACE_Message_Queue_Ex< ACE_MESSAGE_TYPE, >:
Public Types | |
enum | { DEFAULT_PRIORITY = 0 } |
Public Member Functions | |
ACE_Message_Queue_Ex (size_t high_water_mark=ACE_Message_Queue_Base::DEFAULT_HWM, size_t low_water_mark=ACE_Message_Queue_Base::DEFAULT_LWM, ACE_Notification_Strategy *=0) | |
virtual int | open (size_t hwm=ACE_Message_Queue_Base::DEFAULT_HWM, size_t lwm=ACE_Message_Queue_Base::DEFAULT_LWM, ACE_Notification_Strategy *=0) |
virtual int | close (void) |
Close down the message queue and release all resources. | |
virtual | ~ACE_Message_Queue_Ex (void) |
Close down the message queue and release all resources. | |
virtual int | flush (void) |
virtual int | flush_i (void) |
virtual int | peek_dequeue_head (ACE_MESSAGE_TYPE *&first_item, ACE_Time_Value *timeout=0) |
virtual int | enqueue_prio (ACE_MESSAGE_TYPE *new_item, ACE_Time_Value *timeout=0) |
virtual int | enqueue_deadline (ACE_MESSAGE_TYPE *new_item, ACE_Time_Value *timeout=0) |
virtual int | enqueue (ACE_MESSAGE_TYPE *new_item, ACE_Time_Value *timeout=0) |
virtual int | enqueue_tail (ACE_MESSAGE_TYPE *new_item, ACE_Time_Value *timeout=0) |
virtual int | enqueue_head (ACE_MESSAGE_TYPE *new_item, ACE_Time_Value *timeout=0) |
virtual int | dequeue (ACE_MESSAGE_TYPE *&first_item, ACE_Time_Value *timeout=0) |
This method is an alias for the following method. | |
virtual int | dequeue_head (ACE_MESSAGE_TYPE *&first_item, ACE_Time_Value *timeout=0) |
virtual int | dequeue_prio (ACE_MESSAGE_TYPE *&dequeued, ACE_Time_Value *timeout=0) |
virtual int | dequeue_tail (ACE_MESSAGE_TYPE *&dequeued, ACE_Time_Value *timeout=0) |
virtual int | dequeue_deadline (ACE_MESSAGE_TYPE *&dequeued, ACE_Time_Value *timeout=0) |
virtual int | is_full (void) |
True if queue is full, else false. | |
virtual int | is_empty (void) |
True if queue is empty, else false. | |
virtual size_t | message_bytes (void) |
virtual size_t | message_length (void) |
virtual size_t | message_count (void) |
virtual void | message_bytes (size_t new_size) |
virtual void | message_length (size_t new_length) |
virtual size_t | high_water_mark (void) |
virtual void | high_water_mark (size_t hwm) |
virtual size_t | low_water_mark (void) |
virtual void | low_water_mark (size_t lwm) |
virtual int | deactivate (void) |
virtual int | activate (void) |
virtual int | pulse (void) |
virtual int | state (void) |
virtual int | deactivated (void) |
virtual int | notify (void) |
virtual ACE_Notification_Strategy * | notification_strategy (void) |
Get the notification strategy for the . | |
virtual void | notification_strategy (ACE_Notification_Strategy *s) |
Set the notification strategy for the . | |
virtual ACE_SYNCH_MUTEX_T & | lock (void) |
Returns a reference to the lock used by the . | |
virtual void | dump (void) const |
Dump the state of an object. | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. | |
Protected Attributes | |
ACE_Message_Queue< ACE_SYNCH_USE > | queue_ |
Implement this via an ACE_Message_Queue. |
An is a strongly-typed version of the ACE_Message_Queue. If is then all operations are thread-safe. Otherwise, if it's then there's no locking overhead.
Definition at line 958 of file Message_Queue_T.h.
|
Definition at line 963 of file Message_Queue_T.h.
00964 { 00965 DEFAULT_PRIORITY = 0 00966 }; |
|
Initialize an ACE_Message_Queue. The determines how many bytes can be stored in a queue before it's considered "full." Supplier threads must block until the queue is no longer full. The determines how many bytes must be in the queue before supplier threads are allowed to enqueue additional ACE_Message_Blocks. By default, the equals the , which means that suppliers will be able to enqueue new messages as soon as a consumer removes any message from the queue. Making the smaller than the forces consumers to drain more messages from the queue before suppliers can enqueue new messages, which can minimize the "silly window syndrome." |
|
Close down the message queue and release all resources.
|
|
Reactivate the queue so that threads can enqueue and dequeue messages again. Returns the state of the queue before the call. |
|
Close down the message queue and release all resources.
Referenced by ACE_Task_Ex<, ACE_MESSAGE_TYPE >::flush(). |
|
Deactivate the queue and wakeup all threads waiting on the queue so they can continue. No messages are removed from the queue, however. Any other operations called until the queue is activated again will immediately return -1 with == ESHUTDOWN. Returns WAS_INACTIVE if queue was inactive before the call and WAS_ACTIVE if queue was active before the call. |
|
Returns true if the state of the queue is DEACTIVATED, but false if the queue's state is ACTIVATED or PULSED. |
|
This method is an alias for the following method.
|
|
Dequeue and return the <ACE_MESSAGE_TYPE *> with the lowest deadline time. Note that uses <{absolute}> time rather than <{relative}> time. If the elapses without receiving a message -1 is returned and is set to . If the queue is deactivated -1 is returned and is set to . Otherwise, returns -1 on failure, else the number of items still on the queue. |
|
Dequeue and return the <ACE_MESSAGE_TYPE *> at the head of the queue. Note that uses <{absolute}> time rather than <{relative}> time. If the elapses without receiving a message -1 is returned and is set to . If the queue is deactivated -1 is returned and is set to . Otherwise, returns -1 on failure, else the number of items still on the queue. Referenced by ACE_Message_Queue_Ex< ACE_MESSAGE_TYPE, ACE_SYNCH_USE >::dequeue(), and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::getq(). |
|
Dequeue and return the <ACE_MESSAGE_TYPE *> that has the lowest priority. Note that uses <{absolute}> time rather than <{relative}> time. If the elapses without receiving a message -1 is returned and is set to . If the queue is deactivated -1 is returned and is set to . Otherwise, returns -1 on failure, else the number of items still on the queue. |
|
Dequeue and return the <ACE_MESSAGE_TYPE *> at the tail of the queue. Note that uses <{absolute}> time rather than <{relative}> time. If the elapses without receiving a message -1 is returned and is set to . If the queue is deactivated -1 is returned and is set to . Otherwise, returns -1 on failure, else the number of items still on the queue. |
|
Dump the state of an object.
Referenced by ACE_Task_Ex<, ACE_MESSAGE_TYPE >::dump(). |
|
This is an alias for . It's only here for backwards compatibility and will go away in a subsequent release. Please use instead. Note that uses <{absolute}> time rather than <{relative}> time. |
|
Enqueue an <ACE_MESSAGE_TYPE *> into the in accordance with its . FIFO order is maintained when messages of the same deadline time are inserted consecutively. Note that uses <{absolute}> time rather than <{relative}> time. If the elapses without receiving a message -1 is returned and is set to . If the queue is deactivated -1 is returned and is set to . Otherwise, returns -1 on failure, else the number of items still on the queue. |
|
Enqueue an <ACE_MESSAGE_TYPE *> at the head of the queue. Note that uses <{absolute}> time rather than <{relative}> time. If the elapses without receiving a message -1 is returned and is set to . If the queue is deactivated -1 is returned and is set to . Otherwise, returns -1 on failure, else the number of items still on the queue. Referenced by ACE_Task_Ex<, ACE_MESSAGE_TYPE >::ungetq(). |
|
Enqueue an <ACE_MESSAGE_TYPE *> into the in accordance with its (0 is lowest priority). FIFO order is maintained when messages of the same priority are inserted consecutively. Note that uses <{absolute}> time rather than <{relative}> time. If the elapses without receiving a message -1 is returned and is set to . If the queue is deactivated -1 is returned and is set to . Otherwise, returns -1 on failure, else the number of items still on the queue. Referenced by ACE_Message_Queue_Ex< ACE_MESSAGE_TYPE, ACE_SYNCH_USE >::enqueue(). |
|
Enqueue an <ACE_MESSAGE_TYPE *> at the end of the queue. Note that uses <{absolute}> time rather than <{relative}> time. If the elapses without receiving a message -1 is returned and is set to . If the queue is deactivated -1 is returned and is set to . Otherwise, returns -1 on failure, else the number of items still on the queue. Referenced by ACE_Task_Ex<, ACE_MESSAGE_TYPE >::putq(). |
|
Release all resources from the message queue but do not mark it as deactivated. This method holds the queue lock during this operation. Returns the number of messages flushed. |
|
Release all resources from the message queue but do not mark it as deactivated. This method does not hold the queue lock during this operation, i.e., it assume the lock is held externally. Returns the number of messages flushed. |
|
Set the high watermark, which determines how many bytes can be stored in a queue before it's considered "full." |
|
Get high watermark. Referenced by ACE_Task_Ex<, ACE_MESSAGE_TYPE >::water_marks(). |
|
True if queue is empty, else false.
|
|
True if queue is full, else false.
|
|
Returns a reference to the lock used by the .
|
|
Set the low watermark, which determines how many bytes must be in the queue before supplier threads are allowed to enqueue additional s. |
|
Get low watermark. Referenced by ACE_Task_Ex<, ACE_MESSAGE_TYPE >::water_marks(). |
|
New value of the number of total bytes on the queue, i.e., sum of the message block sizes. |
|
Number of total bytes on the queue, i.e., sum of the message block sizes. |
|
Number of total messages on the queue. |
|
New value of the number of total length on the queue, i.e., sum of the message block lengths. |
|
Number of total length on the queue, i.e., sum of the message block lengths. |
|
Set the notification strategy for the .
|
|
Get the notification strategy for the .
|
|
This hook is automatically invoked by , , and when a new item is inserted into the queue. Subclasses can override this method to perform specific notification strategies (e.g., signaling events for a , notifying a , etc.). In a multi-threaded application with concurrent consumers, there is no guarantee that the queue will be still be non-empty by the time the notification occurs. |
|
Initialize an ACE_Message_Queue. The determines how many bytes can be stored in a queue before it's considered "full." Supplier threads must block until the queue is no longer full. The determines how many bytes must be in the queue before supplier threads are allowed to enqueue additional ACE_Message_Blocks. By default, the equals the , which means that suppliers will be able to enqueue new messages as soon as a consumer removes any message from the queue. Making the smaller than the forces consumers to drain more messages from the queue before suppliers can enqueue new messages, which can minimize the "silly window syndrome." |
|
Retrieve the first without removing it. Note that uses <{absolute}> time rather than <{relative}> time. If the elapses without receiving a message -1 is returned and is set to . If the queue is deactivated -1 is returned and is set to . Otherwise, returns -1 on failure, else the number of items still on the queue. |
|
Pulse the queue to wake up any waiting threads. Changes the queue state to PULSED; future enqueue/dequeue operations proceed as in ACTIVATED state.
|
|
Returns the current state of the queue, which can be one of ACTIVATED, DEACTIVATED, or PULSED. |
|
Declare the dynamic allocation hooks.
Definition at line 1293 of file Message_Queue_T.h. |
|
Implement this via an ACE_Message_Queue.
Definition at line 1297 of file Message_Queue_T.h. |