dfx 0.1.0
Linux-based dynamic dataflow executor
Loading...
Searching...
No Matches
dfx::Utils::CallWithoutToken Concept Reference

Concept for a task that can be executed without a stop token. More...

#include <dfx-utilities/Thread.hpp>

Concept definition

template<typename T>
concept dfx::Utils::CallWithoutToken = requires(T t)
{ t.exec(); }
Concept for a task that can be executed without a stop token.
Definition Thread.hpp:41

Detailed Description

Concept for a task that can be executed without a stop token.

Requires the type to implement an exec() method.