📄 ecg_mcast_eh.i
字号:
/* -*- C++ -*- */
// ECG_Mcast_EH.i,v 1.4 2003/06/18 05:40:17 jwillemsen Exp
ACE_INLINE
TAO_ECG_Mcast_EH::
Observer_Disconnect_Command::Observer_Disconnect_Command (void)
: handle_ ()
, ec_ ()
{
}
ACE_INLINE
TAO_ECG_Mcast_EH::
Observer_Disconnect_Command::Observer_Disconnect_Command (
RtecEventChannelAdmin::Observer_Handle handle,
RtecEventChannelAdmin::EventChannel_ptr ec)
: handle_ (handle)
, ec_ (RtecEventChannelAdmin::EventChannel::_duplicate (ec))
{
}
ACE_INLINE
TAO_ECG_Mcast_EH::
Observer_Disconnect_Command::Observer_Disconnect_Command (
const Observer_Disconnect_Command & rhs)
: handle_ (rhs.handle_)
, ec_ (RtecEventChannelAdmin::EventChannel::_duplicate (rhs.ec_.in()))
{
}
ACE_INLINE
TAO_ECG_Mcast_EH::Observer_Disconnect_Command &
TAO_ECG_Mcast_EH::
Observer_Disconnect_Command::operator= (
const Observer_Disconnect_Command & rhs)
{
this->handle_ = rhs.handle_;
this->ec_ = RtecEventChannelAdmin::EventChannel::_duplicate (rhs.ec_.in());
return *this;
}
ACE_INLINE void
TAO_ECG_Mcast_EH::
Observer_Disconnect_Command::execute (ACE_ENV_SINGLE_ARG_DECL)
{
if (CORBA::is_nil (this->ec_.in ()))
// We are not connected.
return;
RtecEventChannelAdmin::EventChannel_var release_ec =
this->ec_._retn ();
release_ec->remove_observer (this->handle_ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
}
//***************************************************************************
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -