SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
worker.hpp
1//
2// worker.hpp
3// skyway
4//
5// Created by Naoto Takahashi on 2024/03/05.
6// Copyright © 2024 NTT Communications. All rights reserved.
7//
8
9#ifndef SKYWAY_GLOBAL_WORKER_HPP_
10#define SKYWAY_GLOBAL_WORKER_HPP_
11
12#include <deque>
13#include <mutex>
14#include <thread>
15#include <condition_variable>
16
17#include "skyway/global/interface/worker.hpp"
18
19namespace skyway {
20namespace global {
21
23class Worker : public interface::Worker {
24public:
25 using Task = std::function<void()>;
26
36 Worker(const std::string& name);
41 ~Worker();
42
43 void AddTask(Task& task) override;
44 void AddTask(const Task&& task) override;
45 void Join() override;
46
47private:
48 void ProcessWorker(const std::string& name);
49 int SetThreadName(const std::string& name);
50 std::deque<Task> tasks_;
51 std::mutex mtx_;
52 std::condition_variable cv_;
53 bool is_termination_requested_ = false;
54 std::thread worker_;
55};
57
58} // namespace global
59} // namespace skyway
60
61#endif /* SKYWAY_GLOBAL_WORKER_HPP_ */