Public Member Functions | |
ImR_Activator_Shutdown (ImR_Activator_i &act) | |
void | operator() (int which_signal) |
Private Attributes | |
ImR_Activator_i & | act_ |
|
Definition at line 20 of file ImR_Activator.cpp.
00021 : act_(act) 00022 { 00023 } |
|
Definition at line 26 of file ImR_Activator.cpp. References ACE_ANY_EXCEPTION, ACE_CATCHANY, ACE_DECLARE_NEW_CORBA_ENV, ACE_ENDTRY, ACE_ENV_ARG_PARAMETER, ACE_PRINT_EXCEPTION, ACE_TRY, ACE_TRY_CHECK, and ImR_Activator_i::shutdown().
00027 { 00028 ACE_DECLARE_NEW_CORBA_ENV; 00029 ACE_TRY 00030 { 00031 this->act_.shutdown (true ACE_ENV_ARG_PARAMETER); 00032 ACE_TRY_CHECK; 00033 } 00034 ACE_CATCHANY 00035 { 00036 ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "ImR Activator: "); 00037 } 00038 ACE_ENDTRY; 00039 } |
|
Definition at line 17 of file ImR_Activator.cpp. |