我正在关注示例ASIO server with timeout,并且此处显示的函数行已从deadline_timer :: traits_type :: now()修改为std :: chrono :: steady_clock :: now()因为我想要在没有提升的情况下使用独立的ASIO。 ASIO可以独立使用C ++ 11。
void check_deadline(deadline_timer* deadline)
{
if (stopped())
return;
// Check whether the deadline has passed. compare the deadline against
// the current time
// I modified this to be std::chrono::steady_clock::now()
if (deadline->expires_at() <= deadline_timer::traits_type::now()) {
// deadline is asio::high_resolution_time type
stop();
} else {
// Put the actor back to sleep.
deadline->async_wait(
std::bind(&TCP_Session::check_deadline, shared_from_this(), deadline));
}
}
在VS2015中,编译工作,但在Eclipse G ++ 4.9.2中,它抱怨
no match for 'operator<=' (operand types are
'asio::basic_waitable_timer<std::chrono::_V2::system_clock>::time_point
aka
std::chrono::time_point<std::chrono::_V2::system_clock, std::chrono::duration<long long int, std::ratio<1ll, 1000000000ll> > >}'
and
'std::chrono::_V2::steady_clock::time_point {aka std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long long int, std::ratio<1ll, 1000000000ll> > >}') TCPSession.h line 284 C/C++ Problem
我发现我只能使用C ++ 11,而不能使用C ++ 14。那么如何在C ++ 11中解决这个问题(没有增强,或经典的unix C)?
答案 0 :(得分:4)
不幸的是,standalone ASIO未定义deadline timer
以匹配boost ASIO。但是,我认为你会发现asio::steady_timer
应该有效。
我使用以下宏在'standalone'和'boost'之间切换:
#ifdef ASIO_STANDALONE
#include <asio.hpp>
#define ASIO asio
#define ASIO_ERROR_CODE asio::error_code
#define ASIO_TIMER asio::steady_timer
#else
#include <boost/asio.hpp>
#define ASIO boost::asio
#define ASIO_ERROR_CODE boost::system::error_code
#define ASIO_TIMER boost::asio::deadline_timer
#endif
答案 1 :(得分:0)
Boost Asio是否使用count($otherUserIds)
取决于预处理器定义(或者定义取决于检测到的编译器,我不记得)。
我记得,没有这种依赖关系的计时器将是std::chrono
。只需确保在那里使用正确的时钟和计时器组合。
在我看来,你应该验证名为asio::high_resolution_timer
的变量的实际类型。