Topaz 5.0
Topaz Game Engine
Loading...
Searching...
No Matches
job.hpp
1#ifndef TOPAZ_CORE_JOB_HPP
2#define TOPAZ_CORE_JOB_HPP
3#include "tz/core/handle.hpp"
4#include <functional>
5
6namespace tz
7{
13 namespace detail
14 {
15 struct job_tag_t{};
16 }
17 using job_handle = tz::handle<detail::job_tag_t>;
22 using job_function = std::function<void()>;
23 using job_worker = std::size_t;
24
50 job_handle job_execute_on(job_function fn, job_worker worker);
67 std::size_t job_count();
74 std::size_t job_worker_count();
75}
76
77#endif // TOPAZ_CORE_JOB_HPP
Represents a generic opaque handle.
Definition handle.hpp:32
std::size_t job_count()
Estimate the total number of jobs that have been created but not yet completed.
std::function< void()> job_function
Represents a function that will be executed on a job worker via job_execute.
Definition job.hpp:22
job_handle job_execute(job_function fn)
Execute a function as a new job.
job_handle job_execute_on(job_function fn, job_worker worker)
Execute a function as a new job - but can only be picked up by a specific worker.
std::size_t job_worker_count()
Retrieve the number of worker threads.
void job_wait(job_handle job)
Block the current thread until the job specified has been fully completed.
bool job_complete(job_handle job)
Query as to whether the specific job has been fully completed or not.