ACE_Task_Ex<, ACE_MESSAGE_TYPE > Class Template Reference

Primary interface for application message processing, as well as input and output message queueing. More...

#include <Task_Ex_T.h>

Inheritance diagram for ACE_Task_Ex<, ACE_MESSAGE_TYPE >:

Inheritance graph
[legend]
Collaboration diagram for ACE_Task_Ex<, ACE_MESSAGE_TYPE >:

Collaboration graph
[legend]
List of all members.

Public Types

typedef ACE_Message_Queue_Ex<
ACE_MESSAGE_TYPE, ACE_SYNCH_USE > 
MESSAGE_QUEUE_EX

Public Member Functions

 ACE_Task_Ex (ACE_Thread_Manager *thr_mgr=0, MESSAGE_QUEUE_EX *mq=0)
virtual ~ACE_Task_Ex (void)
 Destructor.
MESSAGE_QUEUE_EXmsg_queue (void)
 Gets the message queue associated with this task.
void msg_queue (MESSAGE_QUEUE_EX *)
 Sets the message queue associated with this task.
int putq (ACE_MESSAGE_TYPE *, ACE_Time_Value *timeout=0)
int getq (ACE_MESSAGE_TYPE *&mb, ACE_Time_Value *timeout=0)
int ungetq (ACE_MESSAGE_TYPE *, ACE_Time_Value *timeout=0)
int reply (ACE_MESSAGE_TYPE *, ACE_Time_Value *timeout=0)
int put_next (ACE_MESSAGE_TYPE *msg, ACE_Time_Value *timeout=0)
int can_put (ACE_MESSAGE_TYPE *)
const ACE_TCHARname (void) const
ACE_Task< ACE_SYNCH_USE > * next (void)
 Get next Task pointer.
void next (ACE_Task< ACE_SYNCH_USE > *)
 Set next Task pointer.
ACE_Task< ACE_SYNCH_USE > * sibling (void)
 Alwasy return 0.
ACE_Module< ACE_SYNCH_USE > * module (void) const
 Return the Task's Module if there is one, else returns 0.
int flush (u_long flag=ACE_Task_Flags::ACE_FLUSHALL)
void water_marks (ACE_IO_Cntl_Msg::ACE_IO_Cntl_Cmds, size_t)
 Manipulate watermarks.
void dump (void) const
 Dump the state of an object.

Public Attributes

MESSAGE_QUEUE_EXmsg_queue_
 Queue of messages on the ACE_Task..
bool delete_msg_queue_
 true if should delete Message_Queue, false otherwise.
ACE_Module< ACE_SYNCH_USE > * mod_
 Back-pointer to the enclosing module.
ACE_Task< ACE_SYNCH_USE > * next_
 Pointer to adjacent ACE_Task.
 ACE_ALLOC_HOOK_DECLARE
 Declare the dynamic allocation hooks.

Private Member Functions

void operator= (const ACE_Task_Ex< _ACE_SYNCH_MUTEX_T, _ACE_SYNCH_CONDITION_T, ACE_MESSAGE_TYPE > &)
 ACE_Task_Ex (const ACE_Task_Ex< _ACE_SYNCH_MUTEX_T, _ACE_SYNCH_CONDITION_T, ACE_MESSAGE_TYPE > &)

Friends

class ACE_Module< ACE_SYNCH_USE >
class ACE_Module_Type

Detailed Description

template<ACE_SYNCH_DECL, class ACE_MESSAGE_TYPE>
class ACE_Task_Ex<, ACE_MESSAGE_TYPE >

Primary interface for application message processing, as well as input and output message queueing.

Unlike ACE_Task, these class doesn't have the ability to be a part of a Stream chain. I.e. You cannot (yet) chain modules based on ACE_Task_Ex.

Todo:
: We can merge ACE_Task and ACE_Task_Ex to be one class. something like that: template <ACE_SYNCH_DECL, ACE_MESSAGE_TYPE = ACE_Message_Block> class ACE_Task : public ACE_Task_Base { // use here the code from ACE_Task_Ex using ACE_Message_Queue_Ex };
Now specialized version of ACE_Task with ACE_Message_Block as its ACE_MESSAGE_TYPE...

template <ACE_SYNCH_DECL> class ACE_Task <ACE_SYNCH_USE, ACE_Message_Block> : public ACE_Task_Base { // put here the good old ACE_Task code };

When User (and legacy code) write ACE_Task<ACE_MT_SYNCH>, specialized ACE_Task code is in action.

Definition at line 61 of file Task_Ex_T.h.


Member Typedef Documentation

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
typedef ACE_Message_Queue_Ex<ACE_MESSAGE_TYPE, ACE_SYNCH_USE> ACE_Task_Ex<, ACE_MESSAGE_TYPE >::MESSAGE_QUEUE_EX

Definition at line 66 of file Task_Ex_T.h.


Constructor & Destructor Documentation

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_Task_Ex<, ACE_MESSAGE_TYPE >::ACE_Task_Ex ( ACE_Thread_Manager thr_mgr = 0,
MESSAGE_QUEUE_EX mq = 0 
)

Initialize a Task, supplying a thread manager and a message queue. If the user doesn't supply a ACE_Message_Queue pointer then we'll allocate one dynamically. Otherwise, we'll use the one passed as a parameter.

Definition at line 48 of file Task_Ex_T.cpp.

References ACE_NEW, ACE_TRACE, ACE_Task_Ex<, ACE_MESSAGE_TYPE >::delete_msg_queue_, and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue_.

00050   : ACE_Task_Base (thr_man),
00051     msg_queue_ (0),
00052     delete_msg_queue_ (false),
00053     mod_ (0),
00054     next_ (0)
00055 {
00056   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE, ACE_MESSAGE_TYPE>::ACE_Task_Ex");
00057 
00058   if (mq == 0)
00059     {
00060       ACE_NEW (mq,
00061                (ACE_Message_Queue_Ex<ACE_MESSAGE_TYPE, ACE_SYNCH_USE>));
00062       this->delete_msg_queue_ = true;
00063     }
00064 
00065   this->msg_queue_ = mq;
00066 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_Task_Ex<, ACE_MESSAGE_TYPE >::~ACE_Task_Ex ( void   )  [virtual]

Destructor.

Definition at line 69 of file Task_Ex_T.cpp.

References ACE_TRACE, ACE_Task_Ex<, ACE_MESSAGE_TYPE >::delete_msg_queue_, and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue_.

00070 {
00071   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE, ACE_MESSAGE_TYPE>::~ACE_Task_Ex");
00072   if (this->delete_msg_queue_)
00073     delete this->msg_queue_;
00074 
00075   // These assignments aren't strickly necessary but they help guard
00076   // against odd race conditions...
00077   this->delete_msg_queue_ = false;
00078 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_Task_Ex<, ACE_MESSAGE_TYPE >::ACE_Task_Ex ( const ACE_Task_Ex< _ACE_SYNCH_MUTEX_T, _ACE_SYNCH_CONDITION_T, ACE_MESSAGE_TYPE > &   )  [private]


Member Function Documentation

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_INLINE int ACE_Task_Ex<, ACE_MESSAGE_TYPE >::can_put ( ACE_MESSAGE_TYPE *   ) 

Tests whether we can enqueue a message without blocking.

Deprecated:
This method is deprecated and will go away in the future.

Definition at line 26 of file Task_Ex_T.inl.

References ACE_NOTSUP_RETURN, and ACE_TRACE.

00027 {
00028   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::can_put");
00029   ACE_NOTSUP_RETURN (-1);
00030 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_BEGIN_VERSIONED_NAMESPACE_DECL void ACE_Task_Ex<, ACE_MESSAGE_TYPE >::dump ( void   )  const

Dump the state of an object.

Definition at line 23 of file Task_Ex_T.cpp.

References ACE_BEGIN_DUMP, ACE_DEBUG, ACE_END_DUMP, ACE_TEXT, ACE_TRACE, ACE_Message_Queue_Ex< ACE_MESSAGE_TYPE, >::dump(), LM_DEBUG, and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue_.

00024 {
00025 #if defined (ACE_HAS_DUMP)
00026   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE, ACE_MESSAGE_TYPE>::dump");
00027   ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
00028   ACE_DEBUG ((LM_DEBUG,  ACE_TEXT ("\nthr_mgr_ = %x"), this->thr_mgr_));
00029   this->msg_queue_->dump ();
00030   ACE_DEBUG ((LM_DEBUG,  ACE_TEXT ("delete_msg_queue_ = %d\n"), this->delete_msg_queue_));
00031   ACE_DEBUG ((LM_DEBUG,  ACE_TEXT ("\nflags = %x"), this->flags_));
00032   ACE_DEBUG ((LM_DEBUG,  ACE_TEXT ("\nmod_ = %x"), this->mod_));
00033   ACE_DEBUG ((LM_DEBUG,  ACE_TEXT ("\nnext_ = %x"), this->next_));
00034   ACE_DEBUG ((LM_DEBUG,  ACE_TEXT ("\ngrp_id_ = %d"), this->grp_id_));
00035   ACE_DEBUG ((LM_DEBUG,  ACE_TEXT ("\nthr_count_ = %d"), this->thr_count_));
00036 #if defined (ACE_MT_SAFE) && (ACE_MT_SAFE != 0)
00037   this->lock_.dump ();
00038 #endif /* ACE_MT_SAFE */
00039 
00040   ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
00041 #endif /* ACE_HAS_DUMP */
00042 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_INLINE int ACE_Task_Ex<, ACE_MESSAGE_TYPE >::flush ( u_long  flag = ACE_Task_Flags::ACE_FLUSHALL  ) 

Flush the task's queue, i.e., free all of the enqueued message blocks and releases any threads blocked on the queue. Note that if this conflicts with the C++ iostream <flush> function, just rewrite the iostream function as ::<flush>.

Definition at line 47 of file Task_Ex_T.inl.

References ACE_BIT_ENABLED, ACE_Task_Flags::ACE_FLUSHALL, ACE_TRACE, ACE_Message_Queue_Ex< ACE_MESSAGE_TYPE, >::close(), and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue_.

00048 {
00049   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::flush");
00050   if (ACE_BIT_ENABLED (flag, ACE_Task_Flags::ACE_FLUSHALL))
00051     return this->msg_queue_ != 0 && this->msg_queue_->close ();
00052   else
00053     return -1;   // Note, need to be more careful about what we free...
00054 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_INLINE int ACE_Task_Ex<, ACE_MESSAGE_TYPE >::getq ( ACE_MESSAGE_TYPE *&  mb,
ACE_Time_Value timeout = 0 
)

Extract the first message from the queue (blocking). Note that timeout uses <{absolute}> time rather than <{relative}> time. Returns number of items in queue if the call succeeds or -1 otherwise.

Definition at line 19 of file Task_Ex_T.inl.

References ACE_TRACE, ACE_Message_Queue_Ex< ACE_MESSAGE_TYPE, >::dequeue_head(), and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue_.

00020 {
00021   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::getq");
00022   return this->msg_queue_->dequeue_head (mb, tv);
00023 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_Module< ACE_SYNCH_USE > * ACE_Task_Ex<, ACE_MESSAGE_TYPE >::module ( void   )  const

Return the Task's Module if there is one, else returns 0.

Definition at line 106 of file Task_Ex_T.cpp.

References ACE_TRACE, and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::mod_.

00107 {
00108   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE, ACE_MESSAGE_TYPE>::module");
00109   return this->mod_;
00110 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_INLINE void ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue ( MESSAGE_QUEUE_EX  ) 

Sets the message queue associated with this task.

Definition at line 57 of file Task_Ex_T.inl.

References ACE_TRACE, ACE_Task_Ex<, ACE_MESSAGE_TYPE >::delete_msg_queue_, and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue_.

00058 {
00059   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::msg_queue");
00060   if (this->delete_msg_queue_)
00061     {
00062       delete this->msg_queue_;
00063       this->delete_msg_queue_ = false;
00064     }
00065   this->msg_queue_ = mq;
00066 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_Message_Queue_Ex< ACE_MESSAGE_TYPE, ACE_SYNCH_USE > * ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue ( void   ) 

Gets the message queue associated with this task.

Definition at line 69 of file Task_Ex_T.inl.

References ACE_TRACE, and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue_.

00070 {
00071   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::msg_queue");
00072   return this->msg_queue_;
00073 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
const ACE_TCHAR * ACE_Task_Ex<, ACE_MESSAGE_TYPE >::name ( void   )  const

Return the name of the enclosing Module if there's one associated with the Task, else returns 0.

Definition at line 96 of file Task_Ex_T.cpp.

References ACE_TRACE, ACE_Task_Ex<, ACE_MESSAGE_TYPE >::mod_, and ACE_Module<>::name().

00097 {
00098   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE, ACE_MESSAGE_TYPE>::name");
00099   if (this->mod_ == 0)
00100     return 0;
00101   else
00102     return this->mod_->name ();
00103 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_INLINE void ACE_Task_Ex<, ACE_MESSAGE_TYPE >::next ( ACE_Task< ACE_SYNCH_USE > *   ) 

Set next Task pointer.

Definition at line 92 of file Task_Ex_T.inl.

References ACE_TRACE, and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::next_.

00093 {
00094   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::next");
00095   this->next_ = q;
00096 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_INLINE ACE_Task< ACE_SYNCH_USE > * ACE_Task_Ex<, ACE_MESSAGE_TYPE >::next ( void   ) 

Get next Task pointer.

Definition at line 85 of file Task_Ex_T.inl.

References ACE_TRACE, and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::next_.

00086 {
00087   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::next");
00088   return this->next_;
00089 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
void ACE_Task_Ex<, ACE_MESSAGE_TYPE >::operator= ( const ACE_Task_Ex< _ACE_SYNCH_MUTEX_T, _ACE_SYNCH_CONDITION_T, ACE_MESSAGE_TYPE > &   )  [private]

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_INLINE int ACE_Task_Ex<, ACE_MESSAGE_TYPE >::put_next ( ACE_MESSAGE_TYPE *  msg,
ACE_Time_Value timeout = 0 
)

Transfer message to the adjacent ACE_Task_Ex in a ACE_Stream. Note that timeout uses <{absolute}> time rather than <{relative}> time.

Definition at line 101 of file Task_Ex_T.inl.

References ACE_TRACE.

00104 {
00105   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::put_next");
00106   return  -1; // this->next_ == 0 ? -1 : this->next_->put (msg, tv);
00107 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_INLINE int ACE_Task_Ex<, ACE_MESSAGE_TYPE >::putq ( ACE_MESSAGE_TYPE *  ,
ACE_Time_Value timeout = 0 
)

Insert message into the message queue. Note that timeout uses <{absolute}> time rather than <{relative}> time.

Definition at line 33 of file Task_Ex_T.inl.

References ACE_TRACE, ACE_Message_Queue_Ex< ACE_MESSAGE_TYPE, >::enqueue_tail(), and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue_.

00034 {
00035   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::putq");
00036   return this->msg_queue_->enqueue_tail (mb, tv);
00037 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_INLINE int ACE_Task_Ex<, ACE_MESSAGE_TYPE >::reply ( ACE_MESSAGE_TYPE *  ,
ACE_Time_Value timeout = 0 
)

Turn the message around and send it back down the Stream. Note that timeout uses <{absolute}> time rather than <{relative}> time.

Definition at line 76 of file Task_Ex_T.inl.

References ACE_TRACE.

00077 {
00078   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::reply");
00079   ACE_UNUSED_ARG (mb);
00080   ACE_UNUSED_ARG (tv);
00081   return -1 ; // this->sibling ()->put_next (mb, tv);
00082 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_Task< ACE_SYNCH_USE > * ACE_Task_Ex<, ACE_MESSAGE_TYPE >::sibling ( void   ) 

Alwasy return 0.

Todo:
FIXME

Todo:
FIXME Need to impl ACE_Moudle to support ACE_Task as well. Now always return 0 for sibling

Definition at line 81 of file Task_Ex_T.cpp.

References ACE_TRACE.

00082 {
00083   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE, ACE_MESSAGE_TYPE>::sibling");
00084   /// @todo FIXME Need to impl ACE_Moudle to support ACE_Task as well.
00085   /// Now always return 0 for sibling
00086   return 0;
00087 /*
00088   if (this->mod_ == 0)
00089     return 0;
00090   else
00091     return this->mod_->sibling (this);
00092 */
00093 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_INLINE int ACE_Task_Ex<, ACE_MESSAGE_TYPE >::ungetq ( ACE_MESSAGE_TYPE *  ,
ACE_Time_Value timeout = 0 
)

Return a message to the queue. Note that timeout uses <{absolute}> time rather than <{relative}> time.

Definition at line 40 of file Task_Ex_T.inl.

References ACE_TRACE, ACE_Message_Queue_Ex< ACE_MESSAGE_TYPE, >::enqueue_head(), and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue_.

00041 {
00042   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::ungetq");
00043   return this->msg_queue_->enqueue_head (mb, tv);
00044 }

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_INLINE void ACE_Task_Ex<, ACE_MESSAGE_TYPE >::water_marks ( ACE_IO_Cntl_Msg::ACE_IO_Cntl_Cmds  ,
size_t   
)

Manipulate watermarks.

Definition at line 8 of file Task_Ex_T.inl.

References ACE_TRACE, ACE_Message_Queue_Ex< ACE_MESSAGE_TYPE, >::high_water_mark(), ACE_Message_Queue_Ex< ACE_MESSAGE_TYPE, >::low_water_mark(), ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue_, and ACE_IO_Cntl_Msg::SET_LWM.

00010 {
00011   ACE_TRACE ("ACE_Task_Ex<ACE_SYNCH_USE,ACE_MESSAGE_TYPE>::water_marks");
00012   if (cmd == ACE_IO_Cntl_Msg::SET_LWM)
00013     this->msg_queue_->low_water_mark (wm_size);
00014   else /* cmd == ACE_IO_Cntl_Msg::SET_HWM */
00015     this->msg_queue_->high_water_mark (wm_size);
00016 }


Friends And Related Function Documentation

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
friend class ACE_Module< ACE_SYNCH_USE > [friend]

Definition at line 64 of file Task_Ex_T.h.

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
friend class ACE_Module_Type [friend]

Definition at line 65 of file Task_Ex_T.h.


Member Data Documentation

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_Task_Ex<, ACE_MESSAGE_TYPE >::ACE_ALLOC_HOOK_DECLARE

Declare the dynamic allocation hooks.

Definition at line 181 of file Task_Ex_T.h.

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
bool ACE_Task_Ex<, ACE_MESSAGE_TYPE >::delete_msg_queue_

true if should delete Message_Queue, false otherwise.

Definition at line 169 of file Task_Ex_T.h.

Referenced by ACE_Task_Ex<, ACE_MESSAGE_TYPE >::ACE_Task_Ex(), ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue(), and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::~ACE_Task_Ex().

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_Module<ACE_SYNCH_USE>* ACE_Task_Ex<, ACE_MESSAGE_TYPE >::mod_

Back-pointer to the enclosing module.

Definition at line 172 of file Task_Ex_T.h.

Referenced by ACE_Task_Ex<, ACE_MESSAGE_TYPE >::module(), and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::name().

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
MESSAGE_QUEUE_EX* ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue_

Queue of messages on the ACE_Task..

Definition at line 166 of file Task_Ex_T.h.

Referenced by ACE_Task_Ex<, ACE_MESSAGE_TYPE >::ACE_Task_Ex(), ACE_Task_Ex<, ACE_MESSAGE_TYPE >::dump(), ACE_Task_Ex<, ACE_MESSAGE_TYPE >::flush(), ACE_Task_Ex<, ACE_MESSAGE_TYPE >::getq(), ACE_Task_Ex<, ACE_MESSAGE_TYPE >::msg_queue(), ACE_Task_Ex<, ACE_MESSAGE_TYPE >::putq(), ACE_Task_Ex<, ACE_MESSAGE_TYPE >::ungetq(), ACE_Task_Ex<, ACE_MESSAGE_TYPE >::water_marks(), and ACE_Task_Ex<, ACE_MESSAGE_TYPE >::~ACE_Task_Ex().

template<ACE_SYNCH_DECL , class ACE_MESSAGE_TYPE>
ACE_Task<ACE_SYNCH_USE>* ACE_Task_Ex<, ACE_MESSAGE_TYPE >::next_

Pointer to adjacent ACE_Task.

Definition at line 175 of file Task_Ex_T.h.

Referenced by ACE_Task_Ex<, ACE_MESSAGE_TYPE >::next().


The documentation for this class was generated from the following files:
Generated on Tue Feb 2 17:35:44 2010 for ACE by  doxygen 1.4.7