00001 // -*- C++ -*- 00002 00003 //============================================================================= 00004 /** 00005 * @file LF_Strategy_Complete.h 00006 * 00007 * $Id: LF_Strategy_Complete.h 76687 2007-01-29 19:18:13Z 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 00029 00030 /** 00031 * @brief A concrete TAO_LF_Strategy for ORB configurations that use 00032 * the Leader/Followers event loop. 00033 */ 00034 class TAO_Export TAO_LF_Strategy_Complete : public TAO_LF_Strategy 00035 { 00036 public: 00037 //@{ 00038 /** @name Virtual Methods 00039 * 00040 * Please check the documentation in TAO_LF_Strategy 00041 */ 00042 virtual ~TAO_LF_Strategy_Complete (void); 00043 00044 virtual void set_upcall_thread (TAO_Leader_Follower &); 00045 virtual int set_event_loop_thread (ACE_Time_Value *max_wait_time, 00046 TAO_Leader_Follower &); 00047 virtual void reset_event_loop_thread (int call_reset, TAO_Leader_Follower &); 00048 }; 00049 00050 TAO_END_VERSIONED_NAMESPACE_DECL 00051 00052 #include /**/ "ace/post.h" 00053 00054 #endif /* TAO_LF_STRATEGY_COMPLETE_H */