#include <Synch_Invocation.h>
Collaboration diagram for TAO::Reply_Guard:
Public Member Functions | |
Reply_Guard (Invocation_Base *s, Invocation_Status is) | |
~Reply_Guard (void) | |
void | set_status (Invocation_Status s) |
Mutator to set the invocation status. | |
Private Member Functions | |
Reply_Guard (Reply_Guard const &) | |
Reply_Guard & | operator= (Reply_Guard const &) |
Private Attributes | |
Invocation_Base *const | invocation_ |
Invocation_Status | status_ |
Definition at line 166 of file Synch_Invocation.h.
|
Definition at line 10 of file Synch_Invocation.inl.
00012 : invocation_ (b) 00013 , status_ (s) 00014 { 00015 } |
|
The destructor calls Invocation_Base::reply_received with the right reply status, which is useful for PI's. Definition at line 18 of file Synch_Invocation.inl. References invocation_, and TAO::Invocation_Base::reply_received().
00019 { 00020 this->invocation_->reply_received (this->status_); 00021 } |
|
|
|
|
|
Mutator to set the invocation status.
Definition at line 24 of file Synch_Invocation.inl. Referenced by TAO::Synch_Twoway_Invocation::check_reply_status(), TAO::Synch_Twoway_Invocation::handle_system_exception(), TAO::Synch_Twoway_Invocation::handle_user_exception(), and TAO::Synch_Twoway_Invocation::location_forward().
00025 { 00026 this->status_ = s; 00027 } |
|
Definition at line 186 of file Synch_Invocation.h. Referenced by ~Reply_Guard(). |
|
Definition at line 187 of file Synch_Invocation.h. |