00001 // $Id: Wait_Strategy.cpp 84153 2009-01-12 18:41:55Z johnnyw $ 00002 00003 #include "tao/Wait_Strategy.h" 00004 00005 //@@ WAIT_STRATEGY_SPL_COPY_HOOK_START 00006 00007 ACE_RCSID (tao, 00008 Wait_Strategy, 00009 "$Id: Wait_Strategy.cpp 84153 2009-01-12 18:41:55Z johnnyw $") 00010 00011 #if !defined (__ACE_INLINE__) 00012 # include "tao/Wait_Strategy.inl" 00013 #endif /* __ACE_INLINE__ */ 00014 00015 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00016 00017 // Constructor. 00018 TAO_Wait_Strategy::TAO_Wait_Strategy (TAO_Transport *transport) 00019 : transport_ (transport), 00020 is_registered_ (false) 00021 { 00022 } 00023 00024 // Destructor. 00025 TAO_Wait_Strategy::~TAO_Wait_Strategy (void) 00026 { 00027 } 00028 00029 /* 00030 * Hook to comment out this method in the lf wait strategy 00031 */ 00032 //@@ LF_WAIT_STRATEGY_SPL_COMMENT_HOOK_START 00033 int 00034 TAO_Wait_Strategy::sending_request (TAO_ORB_Core *, int) 00035 { 00036 return 0; 00037 } 00038 //@@ LF_WAIT_STRATEGY_SPL_COMMENT_HOOK_END 00039 00040 /* 00041 * Hook to specialize the Wait Strategy 00042 */ 00043 //@@ TAO_WAIT_STRATEGY_SPL_ADD_HOOK 00044 00045 TAO_END_VERSIONED_NAMESPACE_DECL