// Copyright (C) 2017 Jérôme Leclercq // This file is part of the "Nazara Engine - Core module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_TASKSCHEDULER_HPP #define NAZARA_TASKSCHEDULER_HPP #include #include namespace Nz { class NAZARA_CORE_API TaskScheduler { public: TaskScheduler() = delete; ~TaskScheduler() = delete; template static void AddTask(F function); template static void AddTask(F function, Args&&... args); template static void AddTask(void (C::*function)(), C* object); static unsigned int GetWorkerCount(); static bool Initialize(); static void Run(); static void SetWorkerCount(unsigned int workerCount); static void Uninitialize(); static void WaitForTasks(); private: static void AddTaskFunctor(Functor* taskFunctor); }; } #include #endif // NAZARA_TASKSCHEDULER_HPP