Merge branch 'multiple_init_problem' of https://git.bitelex.co/marcelb/asynco into multiple_init_problem
This commit is contained in:
commit
5b0e363cd5
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
@ -69,6 +69,8 @@
|
|||||||
"cinttypes": "cpp",
|
"cinttypes": "cpp",
|
||||||
"typeindex": "cpp",
|
"typeindex": "cpp",
|
||||||
"typeinfo": "cpp",
|
"typeinfo": "cpp",
|
||||||
"variant": "cpp"
|
"variant": "cpp",
|
||||||
|
"coroutine": "cpp",
|
||||||
|
"source_location": "cpp"
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -35,6 +35,28 @@ T await_(future<T>&& r) {
|
|||||||
return move(r).get();
|
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();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user