mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-30 06:07:56 +08:00
31 lines
720 B
C
31 lines
720 B
C
|
#pragma once
|
||
|
|
||
|
#include <future>
|
||
|
#include <thread>
|
||
|
#include <functional>
|
||
|
#include <queue>
|
||
|
#include <atomic>
|
||
|
|
||
|
// OnThreadExecutor allows its caller to off-load some work to a persistently running background thread.
|
||
|
// This might come in handy if you use the API which sets thread-wide global state and the state needs
|
||
|
// to be isolated.
|
||
|
|
||
|
class OnThreadExecutor final {
|
||
|
public:
|
||
|
using task_t = std::packaged_task<void()>;
|
||
|
|
||
|
OnThreadExecutor();
|
||
|
~OnThreadExecutor();
|
||
|
std::future<void> submit(task_t task);
|
||
|
|
||
|
private:
|
||
|
void worker_thread();
|
||
|
|
||
|
std::thread _worker_thread;
|
||
|
|
||
|
std::mutex _task_mutex;
|
||
|
std::condition_variable _task_cv;
|
||
|
std::atomic_bool _active;
|
||
|
std::queue<std::packaged_task<void()>> _task_queue;
|
||
|
};
|