feat: add ConcurrentTask

This tasks (or rather, meta-task) has the ability to run several other
sub tasks concurrently.

Signed-off-by: flow <flowlnlnln@gmail.com>
This commit is contained in:
flow
2022-06-12 13:07:11 -03:00
parent 63dfc0633f
commit 8e80b4bfc1
3 changed files with 204 additions and 0 deletions

View File

@ -418,6 +418,8 @@ set(TASKS_SOURCES
# Tasks
tasks/Task.h
tasks/Task.cpp
tasks/ConcurrentTask.h
tasks/ConcurrentTask.cpp
tasks/SequentialTask.h
tasks/SequentialTask.cpp
)