dii_invocation.inl

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

INL
50
字号
// This may look like C, but it's really -*- C++ -*-
//
// DII_Invocation.inl,v 1.9 2003/10/28 18:29:23 bala Exp
//
#if 0
ACE_INLINE
TAO_GIOP_DII_Invocation::TAO_GIOP_DII_Invocation (TAO_Stub *data,
                                                  const char *operation,
                                                  CORBA::ULong opname_len,
                                                  CORBA::Boolean argument_flag,
                                                  TAO_ORB_Core *orb_core,
                                                  CORBA::Request_ptr host,
                                                  int byte_order)
  : TAO_GIOP_Twoway_Invocation (data,
                                operation,
                                opname_len,
                                argument_flag,
                                orb_core,
                                byte_order),
    host_ (host)
{
}

ACE_INLINE
TAO_GIOP_DII_Deferred_Invocation::TAO_GIOP_DII_Deferred_Invocation (
    TAO_Stub *stub,
    TAO_ORB_Core *orb_core,
    CORBA::Boolean argument_flag,
    const CORBA::Request_ptr req,
    int byte_order
  )
  : TAO_GIOP_Asynch_Invocation (stub,
                                req->operation (),
                                ACE_static_cast (CORBA::ULong,
                                   ACE_OS::strlen (req->operation ())),
                                argument_flag,
                                orb_core,
                                byte_order)
{
  // New reply dispatcher on the heap, because
  // we will go out of scope and hand over the
  // reply dispatcher to the ORB.
  // So this->rd_ is 0, because we do not need to
  // hold a pointer to it.
  ACE_NEW (this->rd_,
           TAO_DII_Deferred_Reply_Dispatcher (req,
                                              orb_core));
}
#endif /*if 0*/

⌨️ 快捷键说明

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