#include <ace/ACE_Strategies.h > template<class SVC_HANDLER> class ACE_Concurrency_Strategy {
public:
virtual int activate_svc_handler ( SVC_HANDLER *svc_handler, void *arg = 0 );
virtual ~ACE_Concurrency_Strategy (void);
void dump (void) const;
ACE_ALLOC_HOOK_DECLARE;
};
virtual int activate_svc_handler (
SVC_HANDLER *svc_handler,
void *arg = 0
);
svc_handler
with an appropriate concurrency
strategy. The default behavior of this method is to activate the
SVC_HANDLER by calling its open() method (which allows the
SVC_HANDLER to define its own concurrency strategy).
virtual ~ACE_Concurrency_Strategy (void);
void dump (void) const;
ACE_ALLOC_HOOK_DECLARE;