Iros
 
Loading...
Searching...
No Matches
execution_context.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace di::concepts {
6template<typename T>
7concept ExecutionContext = requires(T& context) {
8 { context.get_scheduler() } -> Scheduler;
9 { context.finish() } -> LanguageVoid;
10 { context.run() } -> LanguageVoid;
11};
12}
Definition execution_context.h:7
Definition core.h:128
Definition scheduler.h:21
Definition any_storable.h:9