Thread.xml 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="Thread" inherits="Reference" version="3.4">
  3. <brief_description>
  4. A unit of execution in a process.
  5. </brief_description>
  6. <description>
  7. A unit of execution in a process. Can run methods on [Object]s simultaneously. The use of synchronization via [Mutex] or [Semaphore] is advised if working with shared objects.
  8. [b]Note:[/b] Breakpoints won't break on code if it's running in a thread. This is a current limitation of the GDScript debugger.
  9. </description>
  10. <tutorials>
  11. <link title="Using multiple threads">https://docs.godotengine.org/en/3.4/tutorials/threads/using_multiple_threads.html</link>
  12. <link title="Thread-safe APIs">https://docs.godotengine.org/en/3.4/tutorials/threads/thread_safe_apis.html</link>
  13. <link title="3D Voxel Demo">https://godotengine.org/asset-library/asset/676</link>
  14. </tutorials>
  15. <methods>
  16. <method name="get_id" qualifiers="const">
  17. <return type="String" />
  18. <description>
  19. Returns the current [Thread]'s ID, uniquely identifying it among all threads. If the [Thread] is not running this returns an empty string.
  20. </description>
  21. </method>
  22. <method name="is_active" qualifiers="const">
  23. <return type="bool" />
  24. <description>
  25. Returns [code]true[/code] if this [Thread] has been started. Once started, this will return [code]true[/code] until it is joined using [method wait_to_finish]. For checking if a [Thread] is still executing its task, use [method is_alive].
  26. </description>
  27. </method>
  28. <method name="is_alive" qualifiers="const">
  29. <return type="bool" />
  30. <description>
  31. Returns [code]true[/code] if this [Thread] is currently running. This is useful for determining if [method wait_to_finish] can be called without blocking the calling thread.
  32. To check if a [Thread] is joinable, use [method is_active].
  33. </description>
  34. </method>
  35. <method name="start">
  36. <return type="int" enum="Error" />
  37. <argument index="0" name="instance" type="Object" />
  38. <argument index="1" name="method" type="String" />
  39. <argument index="2" name="userdata" type="Variant" default="null" />
  40. <argument index="3" name="priority" type="int" enum="Thread.Priority" default="1" />
  41. <description>
  42. Starts a new [Thread] that runs [code]method[/code] on object [code]instance[/code] with [code]userdata[/code] passed as an argument. Even if no userdata is passed, [code]method[/code] must accept one argument and it will be null. The [code]priority[/code] of the [Thread] can be changed by passing a value from the [enum Priority] enum.
  43. Returns [constant OK] on success, or [constant ERR_CANT_CREATE] on failure.
  44. </description>
  45. </method>
  46. <method name="wait_to_finish">
  47. <return type="Variant" />
  48. <description>
  49. Joins the [Thread] and waits for it to finish. Returns the output of the method passed to [method start].
  50. Should either be used when you want to retrieve the value returned from the method called by the [Thread] or before freeing the instance that contains the [Thread].
  51. To determine if this can be called without blocking the calling thread, check if [method is_alive] is [code]false[/code].
  52. [b]Note:[/b] After the [Thread] finishes joining it will be disposed. If you want to use it again you will have to create a new instance of it.
  53. </description>
  54. </method>
  55. </methods>
  56. <constants>
  57. <constant name="PRIORITY_LOW" value="0" enum="Priority">
  58. A thread running with lower priority than normally.
  59. </constant>
  60. <constant name="PRIORITY_NORMAL" value="1" enum="Priority">
  61. A thread with a standard priority.
  62. </constant>
  63. <constant name="PRIORITY_HIGH" value="2" enum="Priority">
  64. A thread running with higher priority than normally.
  65. </constant>
  66. </constants>
  67. </class>