|
template<auto Candidate, typename... Req> |
void | emplace (const char *name=nullptr) |
| Adds a free function to the task list.
|
|
template<auto Candidate, typename... Req, typename Type> |
void | emplace (Type &value_or_instance, const char *name=nullptr) |
| Adds a free function with payload or a member function with an instance to the task list.
|
|
template<typename... Req> |
void | emplace (function_type *func, const void *payload=nullptr, const char *name=nullptr) |
| Adds an user defined function with optional payload to the task list.
|
|
std::vector< vertex > | graph () |
| Generates a task graph for the current content.
|
|
void | clear () |
| Erases all elements from a container.
|
|
template<typename Registry>
class entt::basic_organizer< Registry >
Utility class for creating a static task graph.
This class offers minimal support (but sufficient in many cases) for creating an execution graph from functions and their requirements on resources.
Note that the resulting tasks aren't executed in any case. This isn't the goal of the tool. Instead, they are returned to the user in the form of a graph that allows for safe execution.
- Template Parameters
-
Registry | Basic registry type. |
Definition at line 119 of file organizer.hpp.
template<typename Registry>
template<auto Candidate, typename... Req, typename Type>
void entt::basic_organizer< Registry >::emplace |
( |
Type & | value_or_instance, |
|
|
const char * | name = nullptr ) |
|
inline |
Adds a free function with payload or a member function with an instance to the task list.
- Template Parameters
-
Candidate | Function or member to add to the task list. |
Req | Additional requirements and/or override resource access mode. |
Type | Type of class or type of payload. |
- Parameters
-
value_or_instance | A valid object that fits the purpose. |
name | Optional name to associate with the task. |
Definition at line 350 of file organizer.hpp.