method_request_event.cpp

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

CPP
31
字号
// Method_Request_Event.cpp,v 1.4 2003/09/04 03:27:24 ossama Exp

#include "Method_Request_Event.h"

#if ! defined (__ACE_INLINE__)
#include "Method_Request_Event.inl"
#endif /* __ACE_INLINE__ */

ACE_RCSID (Notify, TAO_Notify_Method_Request_Event, "Method_Request_Event.cpp,v 1.4 2003/09/04 03:27:24 ossama Exp")

TAO_Notify_Method_Request_Event::TAO_Notify_Method_Request_Event (const TAO_Notify_Event_var& event)
  :event_ (event)
{
  this->init (event);
}

TAO_Notify_Method_Request_Event::~TAO_Notify_Method_Request_Event ()
{
}
int
TAO_Notify_Method_Request_Event::execute (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
{
  return -1;
}

const TAO_Notify_Event_var&
TAO_Notify_Method_Request_Event::event (void)
{
  return this->event_;
}

⌨️ 快捷键说明

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