timer_helpers.h

来自「最新的版本ACE-5.6.8,刚从外文网上搬下,与大家分享.」· C头文件 代码 · 共 45 行

H
45
字号
/* -*- c+ -*- */
// $Id: Timer_Helpers.h 80826 2008-03-04 14:51:23Z wotte $

#ifndef JAWS_TIMER_HELPERS_H
#define JAWS_TIMER_HELPERS_H

#include "ace/Singleton.h"
#include "ace/Event_Handler.h"

#include "jaws3/Timer.h"
#include "jaws3/Event_Completer.h"
#include "jaws3/Event_Result.h"

class JAWS_Timer_EH : public ACE_Event_Handler
{
public:

  JAWS_Timer_EH ( JAWS_Event_Completer *completer
                , void *act = 0
                , int interval = 0
                )
    : completer_ (completer)
    , act_ (act)
    , interval_ (interval)
    , expired_ (0)
  {
  }

  int handle_timeout (const ACE_Time_Value &tv, const void *act);
  // Called when timer expires.

  int handle_close (ACE_HANDLE h, ACE_Reactor_Mask m);
  // Called directly when timer is canceled.

private:

  JAWS_Event_Completer *completer_;
  void *act_;
  const int interval_;
  int expired_;

};

#endif /* JAWS_TIMER_HELPERS_H */

⌨️ 快捷键说明

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