1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
.TH ACE_NOOP_Concurrency_Strategy 3 "1 Dec 2001" "ACE" \" -*- nroff -*-
.ad l
.nh
.SH NAME
ACE_NOOP_Concurrency_Strategy \- Implements a no-op activation strategy in order to avoid calling open on a svc_handler multiple times.
.SH SYNOPSIS
.br
.PP
\fC#include <Strategies_T.h>\fR
.PP
Inherits \fBACE_Concurrency_Strategy< SVC_HANDLER >\fR.
.PP
.SS Public Methods
.in +1c
.ti -1c
.RI "virtual int \fBactivate_svc_handler\fR (SVC_HANDLER *svc_handler, void *arg = 0)"
.br
.RI "\fIThis is a no-op.\fR"
.in -1c
.SH DETAILED DESCRIPTION
.PP
.SS template<class SVC_HANDLER> template class ACE_NOOP_Concurrency_Strategy
Implements a no-op activation strategy in order to avoid calling open on a svc_handler multiple times.
.PP
.PP
An example of the use of this is in the , which reuses svc_handlers. Therefore we don't want to call open on the recycled svc_handler more than once.
.PP
.SH MEMBER FUNCTION DOCUMENTATION
.PP
.SS template<classSVC_HANDLER> int ACE_NOOP_Concurrency_Strategy<SVC_HANDLER>::activate_svc_handler (SVC_HANDLER * svc_handler, void * arg = 0)\fC [virtual]\fR
.PP
This is a no-op.
.PP
Reimplemented from \fBACE_Concurrency_Strategy\fR.
.SH AUTHOR
.PP
Generated automatically by Doxygen for ACE from the source code.
|