也许我误解了事情是如何工作的,但我试图为read_until
调用添加超时,所以我创建了一个deadline_timer
并在调用之前启动了它read_until
,但是read_until
仍然阻止了一切,并且计时器永远不会被激活。我做错了吗?以下是我的代码中的一些片段。
void MyClass::handle_timeout(const boost::system::error_code& error)
{
// Our deadline timer went off.
std::cout << "Deadline Timer was triggered." << std::endl;
Disconnect();
}
// Read some data.
void MyClass::ReadData(){
boost::asio::streambuf response;
deadline_.expires_from_now(boost::posix_time::seconds(DEFAULT_TIMEOUT));
deadline_.async_wait(boost::bind(&MyClass::handle_timeout, this, _1));
boost::asio::read_until(socket_,response,asString);
}