GNU/Linux >> Linux の 問題 >  >> Linux

C++ブーストASIOの単純な定期タイマー?

非常に単純ですが、完全に機能する例:

#include <iostream>
#include <boost/asio.hpp>

boost::asio::io_service io_service;
boost::posix_time::seconds interval(1);  // 1 second
boost::asio::deadline_timer timer(io_service, interval);

void tick(const boost::system::error_code& /*e*/) {

    std::cout << "tick" << std::endl;

    // Reschedule the timer for 1 second in the future:
    timer.expires_at(timer.expires_at() + interval);
    // Posts the timer event
    timer.async_wait(tick);
}

int main(void) {

    // Schedule the timer for the first time:
    timer.async_wait(tick);
    // Enter IO loop. The timer will fire for the first time 1 second from now:
    io_service.run();
    return 0;
}

expires_at() を呼び出すことが非常に重要であることに注意してください 新しい有効期限を設定します。そうしないと、現在の期限がすでに切れているため、タイマーがすぐに起動します。


Boosts Asio チュートリアルの 2 番目の例で説明しています。
ここで見つけることができます。

その後、3 番目の例をチェックして、定期的な時間間隔で再度呼び出す方法を確認してください。


Linux
  1. .htaccessを介した簡単なWebサイトのリダイレクト

  2. シンプルなハードドライブのデータ回復

  3. シンプルなコマンドライン計算機?

  1. Thomas –Linux用のシンプルなPomodoroタイマーアプリ

  2. C または C++ でコール スタックを出力する

  3. Linux カーネル タイマーの変更

  1. 単純なC++スレッドプログラムをコンパイルできませんか?

  2. C++ コマンド ライン インターフェイス

  3. auditd 構成の簡単な例