#include <Strategies_T.h>
Public Types | |
| typedef ACE_TYPENAME SVC_HANDLER::addr_type | addr_type |
| typedef SVC_HANDLER | handler_type |
| typedef ACE_TYPENAME SVC_HANDLER::stream_type | stream_type |
Public Methods | |
| virtual | ~ACE_Recycling_Strategy (void) |
| Virtual Destructor. More... | |
| virtual int | assign_recycler (SVC_HANDLER *svc_handler, ACE_Connection_Recycling_Strategy *recycler, const void *recycling_act) |
| Tell the Svc_Handler something about the recycler, so that it can reach the recycler when necessary. More... | |
| virtual int | prepare_for_recycling (SVC_HANDLER *svc_handler) |
| This allows us to prepare the svc_handler for recycling. More... | |
Acts as a consular to the Svc_Handler, preparing it for the tough times ahead when the Svc_Handler will be recycled.
Definition at line 46 of file Strategies_T.h.
|
|||||
|
Definition at line 51 of file Strategies_T.h. |
|
|||||
|
Definition at line 52 of file Strategies_T.h. |
|
|||||
|
Definition at line 53 of file Strategies_T.h. |
|
||||||||||
|
Virtual Destructor.
Definition at line 5 of file Strategies_T.i.
00006 {
00007 }
|
|
||||||||||||||||||||
|
Tell the Svc_Handler something about the recycler, so that it can reach the recycler when necessary.
Definition at line 10 of file Strategies_T.i.
00013 {
00014 svc_handler->recycler (recycler, recycling_act);
00015 return 0;
00016 }
|
|
||||||||||
|
This allows us to prepare the svc_handler for recycling.
Definition at line 19 of file Strategies_T.i.
00020 {
00021 return svc_handler->recycle ();
00022 }
|
1.2.14 written by Dimitri van Heesch,
© 1997-2002