ACE  6.2.4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Classes | Macros | Typedefs
Service_Config.h File Reference
#include "ace/Default_Constants.h"
#include "ace/Intrusive_Auto_Ptr.h"
#include "ace/Service_Gestalt.h"
#include "ace/Synch_Traits.h"
#include "ace/OS_NS_signal.h"
#include "ace/Service_Config.inl"

Classes

class  ACE_Static_Svc_Descriptor
 Holds the information necessary to describe a statically linked Svc. More...
 
class  ACE_Threading_Helper< LOCK >
 Encapsulates responsibility for allocating, destroying and manipulating the value, associated with a thread-specific key. Relates to the ability of the created thread to inherit the parent thread's gestalt. Designed to be used as an instance member of ACE_Service_Config. More...
 
class  ACE_Threading_Helper< ACE_Thread_Mutex >
 
class  ACE_Threading_Helper< ACE_Null_Mutex >
 
class  ACE_Service_Config
 Supplies common server operations for dynamic and static configuration of service. More...
 
class  ACE_Service_Config_Guard
 A guard class, designed to be instantiated on the stack. More...
 

Macros

#define ACE_STATIC_SERVICE_DIRECTIVE(ident, parameters)
 
#define ACE_DYNAMIC_SERVICE_DIRECTIVE(ident, libpathname, objectclass, parameters)
 
#define ACE_DYNAMIC_VERSIONED_SERVICE_DIRECTIVE(ident, libpathname, version, objectclass, parameters)
 
#define ACE_REMOVE_SERVICE_DIRECTIVE(ident)
 
#define ACE_Component_Config   ACE_Service_Config
 

Typedefs

typedef ACE_Service_Object *(* ACE_SERVICE_ALLOCATOR )(ACE_Service_Object_Exterminator *)
 

Detailed Description

Id:
Service_Config.h 96605 2013-01-02 19:33:30Z tgirard
Author
Douglas C. Schmidt schmi.nosp@m.dt@c.nosp@m.s.wus.nosp@m.tl.e.nosp@m.du

Macro Definition Documentation

#define ACE_Component_Config   ACE_Service_Config
#define ACE_DYNAMIC_SERVICE_DIRECTIVE (   ident,
  libpathname,
  objectclass,
  parameters 
)
Value:
ACE_TEXT ("<ACE_Svc_Conf><dynamic id=\"") \
ACE_TEXT (ident) \
ACE_TEXT ("\" type=\"Service_Object\">") \
ACE_TEXT ("<initializer path=\"") \
ACE_TEXT (libpathname) \
ACE_TEXT ("\" init=\"") \
ACE_TEXT (objectclass) \
ACE_TEXT ("\"") \
ACE_TEXT (" params=\"") \
ACE_TEXT (parameters) \
ACE_TEXT ("\"/></dynamic></ACE_Svc_Conf>")
#define ACE_TEXT(STRING)
Definition: ace_wchar.h:102
#define ACE_DYNAMIC_VERSIONED_SERVICE_DIRECTIVE (   ident,
  libpathname,
  version,
  objectclass,
  parameters 
)
Value:
ACE_TEXT ("<ACE_Svc_Conf><dynamic id=\"") \
ACE_TEXT (ident) \
ACE_TEXT ("\" type=\"Service_Object\">") \
ACE_TEXT ("<initializer path=\"") \
ACE_TEXT (libpathname) \
ACE_TEXT ("\" init=\"") \
ACE_TEXT (objectclass) \
ACE_TEXT ("\"") \
ACE_TEXT (" params=\"") \
ACE_TEXT (parameters) \
ACE_TEXT ("\"/></dynamic></ACE_Svc_Conf>")
#define ACE_TEXT(STRING)
Definition: ace_wchar.h:102
#define ACE_REMOVE_SERVICE_DIRECTIVE (   ident)
Value:
ACE_TEXT ("<ACE_Svc_Conf><remove id=\"") \
ACE_TEXT (ident) \
ACE_TEXT ("\"></remove></ACE_Svc_Conf>")
#define ACE_TEXT(STRING)
Definition: ace_wchar.h:102
#define ACE_STATIC_SERVICE_DIRECTIVE (   ident,
  parameters 
)
Value:
ACE_TEXT ("<ACE_Svc_Conf><static id=\"") \
ACE_TEXT (ident) \
ACE_TEXT ("\" params=\"") \
ACE_TEXT (parameters) \
ACE_TEXT ("\"/></ACE_Svc_Conf>")
#define ACE_TEXT(STRING)
Definition: ace_wchar.h:102

Typedef Documentation

typedef ACE_Service_Object*(* ACE_SERVICE_ALLOCATOR)(ACE_Service_Object_Exterminator *)