gpt4 book ai didi

C++ Boost ASIO 简单的周期性定时器?

转载 作者:IT老高 更新时间:2023-10-28 13:03:15 36 4
gpt4 key购买 nike

我想要一个非常简单的周期性计时器来每 50 毫秒调用一次我的代码。我可以制作一个一直休眠 50 毫秒的线程(但这很痛苦)...我可以开始研究用于制作计时器的 Linux API(但它不是可移植的)...

我希望喜欢使用 boost.. 我只是不确定这是否可能。 boost 是否提供此功能?

最佳答案

一个非常简单但功能齐全的示例:

#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() 设置新的到期时间非常重要,否则计时器将立即触发,因为它的当前到期时间已经到期。

关于C++ Boost ASIO 简单的周期性定时器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4267546/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com