rt_transport_descriptor_property.inl

来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· INL 代码 · 共 54 行

INL
54
字号
// RT_Transport_Descriptor_Property.inl,v 1.1 2003/07/12 20:59:57 irfan Exp

#include "RT_Transport_Descriptor_Property.h"

ACE_INLINE
TAO_RT_Transport_Descriptor_Property::TAO_RT_Transport_Descriptor_Property (void)
  : next_ (0)
{
}

/*************************************************************************************************/
ACE_INLINE
TAO_RT_Transport_Descriptor_Private_Connection_Property::TAO_RT_Transport_Descriptor_Private_Connection_Property (void)
  : object_id_ (-1)
{
}

ACE_INLINE
TAO_RT_Transport_Descriptor_Private_Connection_Property::TAO_RT_Transport_Descriptor_Private_Connection_Property (long object_id)
  : object_id_ (object_id)
{
}

ACE_INLINE void
TAO_RT_Transport_Descriptor_Private_Connection_Property::init (long object_id)
{
  this->object_id_ = object_id;
}

/*************************************************************************************************/

ACE_INLINE
TAO_RT_Transport_Descriptor_Banded_Connection_Property::TAO_RT_Transport_Descriptor_Banded_Connection_Property (void)
  : low_priority_ (-1)
  , high_priority_ (-1)
{
}

ACE_INLINE
TAO_RT_Transport_Descriptor_Banded_Connection_Property::TAO_RT_Transport_Descriptor_Banded_Connection_Property (CORBA::Short low_priority,
                                                                                                                CORBA::Short high_priority)
  : low_priority_ (low_priority)
  , high_priority_ (high_priority)
{
}

ACE_INLINE void
TAO_RT_Transport_Descriptor_Banded_Connection_Property::init (CORBA::Short low_priority,
                                                              CORBA::Short high_priority)
{
  this->low_priority_ = low_priority;
  this->high_priority_ = high_priority;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?