#include <Strategies_T.h>
Public Types | |
| typedef SVC_HANDLER::addr_type | addr_type | 
| typedef SVC_HANDLER | handler_type | 
| typedef SVC_HANDLER::stream_type | stream_type | 
Public Member Functions | |
| virtual | ~ACE_Recycling_Strategy (void) | 
| Virtual Destructor.   | |
| virtual int | assign_recycler (SVC_HANDLER *svc_handler, ACE_Connection_Recycling_Strategy *recycler, const void *recycling_act) | 
| virtual int | prepare_for_recycling (SVC_HANDLER *svc_handler) | 
| This allows us to prepare the svc_handler for recycling.   | |
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 49 of file Strategies_T.h.
      
  | 
  |||||
| 
 
 Definition at line 54 of file Strategies_T.h.  | 
  
      
  | 
  |||||
| 
 
 Definition at line 55 of file Strategies_T.h.  | 
  
      
  | 
  |||||
| 
 
 Definition at line 56 of file Strategies_T.h.  | 
  
      
  | 
  ||||||||||
| 
 Virtual Destructor. 
 Definition at line 31 of file Strategies_T.cpp. 
 00032 {
00033 }
 | 
  
      
  | 
  ||||||||||||||||||||
| 
 Tell the Svc_Handler something about the recycler, so that it can reach the recycler when necessary. Definition at line 36 of file Strategies_T.cpp. 
 00039 {
00040   svc_handler->recycler (recycler, recycling_act);
00041   return 0;
00042 }
 | 
  
      
  | 
  ||||||||||
| 
 This allows us to prepare the svc_handler for recycling. 
 Definition at line 45 of file Strategies_T.cpp. 
 00046 {
00047   return svc_handler->recycle ();
00048 }
 | 
  
 
1.3.6