timer_helpers.cpp

来自「ACE自适配通信环境(ADAPTIVE Communication Enviro」· C++ 代码 · 共 41 行

CPP
41
字号
// Timer_Helpers.cpp,v 1.2 2004/01/04 21:17:14 bala Exp#ifndef JAWS_BUILD_DLL#define JAWS_BUILD_DLL#endif #include "jaws3/Timer_Helpers.h"intJAWS_Timer_EH::handle_timeout (const ACE_Time_Value &, const void *){  JAWS_Event_Result timer_result ( 0                                 , JAWS_Event_Result::JE_OK                                 , JAWS_Event_Result::JE_TIMER_OK                                 );  if (this->completer_)    this->completer_->timer_complete (timer_result, this->act_);  if (this->interval_)    return 0;  this->expired_ = 1;  return -1;}intJAWS_Timer_EH::handle_close (ACE_HANDLE, ACE_Reactor_Mask){  JAWS_Event_Result timer_result ( 0                                 , JAWS_Event_Result::JE_CANCEL                                 , JAWS_Event_Result::JE_TIMER_CANCEL                                 );  if (! this->expired_ && this->completer_)    this->completer_->timer_complete (timer_result, this->act_);  return 0;}

⌨️ 快捷键说明

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