This struct keeps track of state related to pre- and post-invoke operations. More...
#include <Servant_Upcall.h>
Public Types | |
enum | State { NO_ACTION_REQUIRED, PRIORITY_RESET_REQUIRED } |
Public Member Functions | |
Pre_Invoke_State (void) | |
Constructor. | |
Public Attributes | |
State | state_ |
CORBA::Short | original_native_priority_ |
Original native priority of the thread. | |
CORBA::Short | original_CORBA_priority_ |
Original CORBA priority of the thread. |
This struct keeps track of state related to pre- and post-invoke operations.
Definition at line 71 of file Servant_Upcall.h.
enum TAO::Portable_Server::Servant_Upcall::Pre_Invoke_State::State |
Definition at line 77 of file Servant_Upcall.h.
{ NO_ACTION_REQUIRED, PRIORITY_RESET_REQUIRED };
TAO::Portable_Server::Servant_Upcall::Pre_Invoke_State::Pre_Invoke_State | ( | void | ) |
Constructor.
Definition at line 204 of file Servant_Upcall.cpp.
: state_ (NO_ACTION_REQUIRED), original_native_priority_ (0), original_CORBA_priority_ (0) { }
CORBA::Short TAO::Portable_Server::Servant_Upcall::Pre_Invoke_State::original_CORBA_priority_ |
Original CORBA priority of the thread.
Definition at line 91 of file Servant_Upcall.h.
CORBA::Short TAO::Portable_Server::Servant_Upcall::Pre_Invoke_State::original_native_priority_ |
Original native priority of the thread.
Definition at line 88 of file Servant_Upcall.h.
State TAO::Portable_Server::Servant_Upcall::Pre_Invoke_State::state_ |
Indicates whether the priority of the thread needs to be reset back to its original value.
Definition at line 85 of file Servant_Upcall.h.