📄 nt_notify_service.h
字号:
/* -*- C++ -*- */
// NT_Notify_Service.h,v 1.2 2003/11/12 22:58:08 michel_j Exp
// ============================================================================
//
// = LIBRARY
// ace
//
// = FILENAME
// NT_Notify_Service.h
//
//
// = DESCRIPTION
// Run the TAO Notify Service as a Windows NT Service.
//
// = AUTHORS
// John Tucker <jtucker@infoglide.com>,
// Mike Vitalo <mvitalo@infoglide.com>,
// David Robison <drrobison@openroadsconsulting.com>
//
// ============================================================================
#ifndef TAO_NT_NOTIFY_SERVICE_H
#define TAO_NT_NOTIFY_SERVICE_H
#include /**/ "ace/OS.h"
#if defined (ACE_WIN32)
#include /**/ "ace/NT_Service.h"
#include /**/ "ace/Singleton.h"
#include /**/ "ace/Synch.h"
#include /**/ "tao/orbconf.h"
class TAO_NT_Notify_Service : public ACE_NT_Service
{
// = TITLE
// Run the TAO Notify Service as a Windows NT Service.
public:
typedef TAO_SYNCH_RECURSIVE_MUTEX MUTEX;
// = Initialization and termination hooks.
TAO_NT_Notify_Service (void);
virtual ~TAO_NT_Notify_Service (void);
virtual void handle_control (DWORD control_code);
// We override <handle_control> because it handles stop requests
// privately.
virtual int handle_exception (ACE_HANDLE h);
// We override <handle_exception> so a 'stop' control code can pop
// the reactor off of its wait.
virtual int svc (void);
// This is a virtual method inherited from ACE_NT_Service.
virtual int init (int argc,
ACE_TCHAR *argv[]);
// Initialize the objects argc_ and argv_ attributes values.
private:
// = Keep track of the "command-line" arguments.
int argc_;
int argc_save_;
// Argument count.
char **argv_;
char **argv_save_;
// Argument list.
friend class ACE_Singleton<TAO_NT_Notify_Service, MUTEX>;
};
typedef ACE_Singleton<TAO_NT_Notify_Service, TAO_NT_Notify_Service::MUTEX> SERVICE;
#endif /* ACE_WIN32 */
#endif /* TAO_NT_NOTIFY_SERVER_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -