Skipping Thread execution when thread is active

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By TobiLa

Hi,

it seems to me that Thread.is_active() is true forever if you don’t run Thread.wait_to_finish()

How can you check if the Thread is finnished without waiting for it?

I have the situation that I’m autosaving my game multiple times, and if my saving thread is still running I don’t want to wait for it, but just skip the new attempt to save.