// -*- C++ -*- //============================================================================= /** * @file LocateRequest_Invocation.h * * $Id$ * * * @author Balachandran Natarajan */ //============================================================================= #ifndef TAO_LOCATEREQUEST_INVOCATION_H #define TAO_LOCATEREQUEST_INVOCATION_H #include /**/ "ace/pre.h" #include "ace/Global_Macros.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "tao/Synch_Invocation.h" class TAO_Synch_Reply_Dispatcher; namespace CORBA { class SystemException; } namespace TAO { class Profile_Transport_Resolver; class TAO_Export LocateRequest_Invocation : protected Synch_Twoway_Invocation { public: LocateRequest_Invocation (CORBA::Object_ptr otarget, Profile_Transport_Resolver &resolver, TAO_Operation_Details &detail); Invocation_Status invoke (ACE_Time_Value *max_wait_time ACE_ENV_ARG_DECL) ACE_THROW_SPEC ((CORBA::Exception)); private: Invocation_Status check_reply (TAO_Synch_Reply_Dispatcher &rd ACE_ENV_ARG_DECL); }; } #include /**/ "ace/post.h" #endif /*TAO_LOCATEREQUEST_INVOCATION_H*/