This repository has been archived on 2022-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
fortuna/do_task.h
surtur f3a9ee0d91
All checks were successful
continuous-integration/drone/push Build is passing
do_task: add a constructor
2022-01-02 07:12:14 +01:00

28 lines
464 B
C++

#ifndef FORTUNA_DO_TASK_H
#define FORTUNA_DO_TASK_H
#include <chrono>
#include <functional>
#include <mutex>
#include <thread>
namespace fortuna {
class DoTask {
private:
std::timed_mutex do_sleep;
std::thread th;
public:
DoTask() noexcept;
~DoTask() noexcept;
auto thread_pls(const std::chrono::seconds& interval,
std::function<void()> callback) -> void;
auto die_pls() -> void;
}; // class DoTask
} // namespace fortuna
#endif//FORTUNA_DO_TASK_H