📄 timer_helpers.cpp
字号:
// $Id: Timer_Helpers.cpp 80826 2008-03-04 14:51:23Z wotte $
#ifndef JAWS_BUILD_DLL
#define JAWS_BUILD_DLL
#endif
#include "jaws3/Timer_Helpers.h"
int
JAWS_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;
}
int
JAWS_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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -