📄 notify_server.cpp
字号:
// Notify_Server.cpp,v 1.13 2003/11/01 11:15:09 dhinton Exp
#include "Notify_Service.h"
#include "ace/OS_main.h"
TAO_Notify_Service_Driver notify_service;
extern "C" void handler (int signum)
{
// check of sigint
if (signum == SIGINT)
{
ACE_DECLARE_NEW_CORBA_ENV;
notify_service.shutdown (ACE_ENV_SINGLE_ARG_PARAMETER);
}
}
// Driver function for the TAO Notify Service.
int
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
// ACE_Sig_Action sa ((ACE_SignalHandler) handler, SIGINT);
// Not handling signals. the shutdown code and event handler is maintained in case we want to address this in the future.
ACE_TRY_NEW_ENV
{
if (notify_service.init (argc, argv ACE_ENV_ARG_PARAMETER) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_LIB_TEXT("Failed to initialize the Notification Service.\n")),
1);
notify_service.run (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
ACE_LIB_TEXT("Failed to run the Notification Service\n"));
return 1;
}
ACE_ENDTRY;
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -