libdisplaydevice latest
C++ library to modify display devices.
display_device::detail::ExecuteWithStopToken Concept Reference

Check if the function signature matches the acceptable signature for RetryScheduler::execute with a stop token. More...

#include <src/common/include/display_device/retry_scheduler.h>

Concept definition

template<class T, class FunctionT>
concept display_device::detail::ExecuteWithStopToken = requires(FunctionT exec_fn, T &value, SchedulerStopToken &token) {
exec_fn(value, token);
}
Check if the function signature matches the acceptable signature for RetryScheduler::execute with a s...
Definition retry_scheduler.h:108

Detailed Description

Check if the function signature matches the acceptable signature for RetryScheduler::execute with a stop token.