00001 // -*- C++ -*- 00002 00003 //============================================================================= 00004 /** 00005 * @file LF_Strategy_Complete.h 00006 * 00007 * $Id: LF_Strategy_Complete.h 84404 2009-02-11 14:15:14Z johnnyw $ 00008 * 00009 * @author Carlos O'Ryan <coryan@uci.edu> 00010 */ 00011 //============================================================================= 00012 00013 #ifndef TAO_LF_STRATEGY_COMPLETE_H 00014 #define TAO_LF_STRATEGY_COMPLETE_H 00015 00016 #include /**/ "ace/pre.h" 00017 00018 #include "tao/LF_Strategy.h" 00019 00020 #if !defined (ACE_LACKS_PRAGMA_ONCE) 00021 # pragma once 00022 #endif /* ACE_LACKS_PRAGMA_ONCE */ 00023 00024 00025 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00026 00027 /** 00028 * @brief A concrete TAO_LF_Strategy for ORB configurations that use 00029 * the Leader/Followers event loop. 00030 */ 00031 class TAO_Export TAO_LF_Strategy_Complete : public TAO_LF_Strategy 00032 { 00033 public: 00034 //@{ 00035 /** @name Virtual Methods 00036 * 00037 * Please check the documentation in TAO_LF_Strategy 00038 */ 00039 virtual ~TAO_LF_Strategy_Complete (void); 00040 00041 virtual void set_upcall_thread (TAO_Leader_Follower &); 00042 virtual int set_event_loop_thread (ACE_Time_Value *max_wait_time, 00043 TAO_Leader_Follower &); 00044 virtual void reset_event_loop_thread (int call_reset, TAO_Leader_Follower &); 00045 }; 00046 00047 TAO_END_VERSIONED_NAMESPACE_DECL 00048 00049 #include /**/ "ace/post.h" 00050 00051 #endif /* TAO_LF_STRATEGY_COMPLETE_H */