#include <Acknowledge.h>
Collaboration diagram for ACE_RMCast::Acknowledge::Descr:

Public Member Functions | |
| Descr () | |
| Descr (unsigned long timer) | |
| Descr (Message_ptr m) | |
| bool | lost () const |
| Message_ptr | msg () |
| void | msg (Message_ptr m) |
| unsigned long | nak_count () const |
| void | nak_count (unsigned long v) |
| unsigned long | timer () const |
| void | timer (unsigned long v) |
Private Attributes | |
| Message_ptr | m_ |
| unsigned long | nak_count_ |
| unsigned long | timer_ |
|
|
Definition at line 55 of file Acknowledge.h. References nak_count_.
00056 : nak_count_ (0), timer_ (1) 00057 { 00058 } |
|
|
Definition at line 60 of file Acknowledge.h. References nak_count_.
00061 : nak_count_ (0), timer_ (timer) 00062 { 00063 } |
|
|
Definition at line 65 of file Acknowledge.h. References m_, and ACE_RMCast::Message_ptr.
00066 : m_ (m) 00067 { 00068 } |
|
|
Definition at line 72 of file Acknowledge.h. References ACE_Strong_Bound_Ptr< X, ACE_LOCK >::get(), and m_. Referenced by ACE_RMCast::Acknowledge::track_queue().
00073 {
00074 return m_.get () == 0;
00075 }
|
|
|
Definition at line 85 of file Acknowledge.h. References m_, and ACE_RMCast::Message_ptr.
00086 {
00087 m_ = m;
00088 }
|
|
|
Definition at line 79 of file Acknowledge.h. References m_.
00080 {
00081 return m_;
00082 }
|
|
|
Definition at line 98 of file Acknowledge.h. References nak_count_.
00099 {
00100 nak_count_ = v;
00101 }
|
|
|
Definition at line 92 of file Acknowledge.h. References nak_count_. Referenced by ACE_RMCast::Acknowledge::track_queue().
00093 {
00094 return nak_count_;
00095 }
|
|
|
Definition at line 110 of file Acknowledge.h.
00111 {
00112 timer_ = v;
00113 }
|
|
|
Definition at line 104 of file Acknowledge.h. Referenced by ACE_RMCast::Acknowledge::track_queue().
00105 {
00106 return timer_;
00107 }
|
|
|
Definition at line 116 of file Acknowledge.h. |
|
|
Definition at line 118 of file Acknowledge.h. Referenced by Descr(), and nak_count(). |
|
|
Definition at line 119 of file Acknowledge.h. |
1.3.6