rt_invocation_endpoint_selectors.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 81 行
H
81 行
// This may look like C, but it's really -*- C++ -*-
//=============================================================================
/**
* @file RT_Invocation_Endpoint_Selectors.h
*
* RT_Invocation_Endpoint_Selectors.h,v 1.9 2003/10/28 18:29:32 bala Exp
*
* Strategies for selecting profile/endpoint from an IOR for making an
* invocation.
*
*
* @author Priyanka Gontla <pgontla@ece.uci.edu>
*/
//=============================================================================
#ifndef TAO_RT_INVOCATION_ENDPOINT_SELECTOR_H
#define TAO_RT_INVOCATION_ENDPOINT_SELECTOR_H
#include /**/ "ace/pre.h"
#include "rtcorba_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/orbconf.h"
#if defined (TAO_HAS_CORBA_MESSAGING) && TAO_HAS_CORBA_MESSAGING != 0
#include "RTCORBA.h"
#include "tao/Invocation_Endpoint_Selectors.h"
class TAO_MProfile;
class TAO_Endpoint;
/**
* @class TAO_RT_Invocation_Endpoint_Selector
*
* @brief TAO_RT_Invocation_Endpoint_Selector
*
* This strategy is used when the only policy that might be set is the
* private connection policy.
*
**/
class TAO_RTCORBA_Export TAO_RT_Invocation_Endpoint_Selector :
public TAO_Invocation_Endpoint_Selector
{
public:
virtual void select_endpoint (TAO::Profile_Transport_Resolver *r,
ACE_Time_Value *val
ACE_ENV_ARG_DECL);
protected:
void select_endpoint_based_on_client_protocol_policy (
TAO::Profile_Transport_Resolver &r,
RTCORBA::ClientProtocolPolicy_ptr client_protocol_policy,
RTCORBA::ProtocolList &protocols,
ACE_Time_Value *v
ACE_ENV_ARG_DECL
);
int endpoint_from_profile (TAO::Profile_Transport_Resolver &r,
ACE_Time_Value *v
ACE_ENV_ARG_DECL);
};
#if defined (__ACE_INLINE__)
# include "RT_Invocation_Endpoint_Selectors.i"
#endif /* __ACE_INLINE__ */
#endif /* TAO_HAS_CORBA_MESSAGING && TAO_HAS_CORBA_MESSAGING != 0 */
#include /**/ "ace/post.h"
#endif /* TAO_RT_INVOCATION_ENDPOINT_SELECTOR_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?