A c++ Godot engine module which makes it easy to run methods in threads.
Go to file
2020-05-24 19:59:40 +02:00
.gitignore Initial commit. 2020-05-24 10:42:29 +02:00
config.py Added ThreadPoolJob. 2020-05-24 11:51:05 +02:00
LICENSE Initial commit. 2020-05-24 10:42:29 +02:00
README.md Initial commit. 2020-05-24 10:42:29 +02:00
register_types.cpp Added ThreadPoolJob. 2020-05-24 11:51:05 +02:00
register_types.h Fix copy paste error. 2020-05-24 11:50:55 +02:00
SCsub Added ThreadPoolJob. 2020-05-24 11:51:05 +02:00
thread_pool_job.cpp Invert the logic of the 2 control flow functions name. 2020-05-24 19:59:40 +02:00
thread_pool_job.h Invert the logic of the 2 control flow functions name. 2020-05-24 19:59:40 +02:00
thread_pool.cpp When not using threading just return the head of the queue in get_running_job. 2020-05-24 19:58:09 +02:00
thread_pool.h Tasks can be cancelled now. 2020-05-24 19:52:27 +02:00

ThreadPool

A c++ Godot engine module, that will help you with threading.