asyncevent-listenereventtimeoutevent-loopevent-drivenasynchronous-programmingasynctaskintervaltimersasync-taskmultithreadinterval-timertimeout-control
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.4 KiB
63 lines
1.4 KiB
#ifndef _ASYNCO_
|
|
#define _ASYNCO_
|
|
|
|
#include "engine.hpp"
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
namespace marcelb {
|
|
namespace asynco {
|
|
|
|
/**
|
|
* Run the function asynchronously
|
|
*/
|
|
template<class F, class... Args>
|
|
auto async_(F&& f, Args&&... args) -> future<typename result_of<F(Args...)>::type> {
|
|
using return_type = typename result_of<F(Args...)>::type;
|
|
future<return_type> res = _asynco_engine.io_context.post(boost::asio::use_future(bind(forward<F>(f), forward<Args>(args)...)));
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* Block until the asynchronous call completes
|
|
*/
|
|
template<typename T>
|
|
T await_(future<T>& r) {
|
|
return r.get();
|
|
}
|
|
|
|
/**
|
|
* Block until the asynchronous call completes
|
|
*/
|
|
template<typename T>
|
|
T await_(future<T>&& r) {
|
|
return move(r).get();
|
|
}
|
|
|
|
/**
|
|
* Block until the asynchronous call completes or time expired
|
|
*/
|
|
template<typename T>
|
|
T await_(future<T>& r, uint64_t time) {
|
|
if (r.wait_for(chrono::milliseconds(time)) == std::future_status::timeout) {
|
|
throw runtime_error("Asynchronous execution timed out");
|
|
}
|
|
return r.get();
|
|
}
|
|
|
|
/**
|
|
* Block until the asynchronous call completes or time expired
|
|
*/
|
|
template<typename T>
|
|
T await_(future<T>&& r, uint64_t time) {
|
|
if (r.wait_for(chrono::milliseconds(time)) == std::future_status::timeout) {
|
|
throw runtime_error("Asynchronous execution timed out");
|
|
}
|
|
return move(r).get();
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
#endif |