2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-01-26 16:01:49 +01:00
<class name= "Thread" inherits= "Reference" version= "3.2" >
2017-09-12 22:42:36 +02:00
<brief_description >
A unit of execution in a process.
</brief_description>
<description >
2019-06-22 01:04:47 +02:00
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.
2020-08-29 02:24:07 +02:00
[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.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2020-10-19 15:55:33 +02:00
<link title= "Using multiple threads" > https://docs.godotengine.org/en/3.2/tutorials/threads/using_multiple_threads.html</link>
<link title= "Thread-safe APIs" > https://docs.godotengine.org/en/3.2/tutorials/threads/thread_safe_apis.html</link>
2020-10-01 10:34:47 +02:00
<link title= "3D Voxel Demo" > https://godotengine.org/asset-library/asset/676</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
<method name= "get_id" qualifiers= "const" >
<return type= "String" >
</return>
<description >
2020-08-28 04:11:35 +02:00
Returns the current [Thread]'s ID, uniquely identifying it among all threads. If the [Thread] is not running this returns an empty string.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "is_active" qualifiers= "const" >
<return type= "bool" >
</return>
<description >
2019-04-17 13:42:56 +02:00
Returns [code]true[/code] if this [Thread] is currently active. An active [Thread] cannot start work on a new method but can be joined with [method wait_to_finish].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "start" >
<return type= "int" enum= "Error" >
</return>
<argument index= "0" name= "instance" type= "Object" >
</argument>
<argument index= "1" name= "method" type= "String" >
</argument>
<argument index= "2" name= "userdata" type= "Variant" default= "null" >
</argument>
2019-04-15 14:49:41 +02:00
<argument index= "3" name= "priority" type= "int" enum= "Thread.Priority" default= "1" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-03-31 04:53:39 +02:00
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.
2019-06-22 01:04:47 +02:00
Returns [constant OK] on success, or [constant ERR_CANT_CREATE] on failure.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "wait_to_finish" >
<return type= "Variant" >
</return>
<description >
2019-03-29 23:37:35 +01:00
Joins the [Thread] and waits for it to finish. Returns what the method called returned.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<constants >
2017-11-24 23:16:30 +01:00
<constant name= "PRIORITY_LOW" value= "0" enum= "Priority" >
2020-01-13 23:08:42 +01:00
A thread running with lower priority than normally.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PRIORITY_NORMAL" value= "1" enum= "Priority" >
2020-01-13 23:08:42 +01:00
A thread with a standard priority.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "PRIORITY_HIGH" value= "2" enum= "Priority" >
2020-01-13 23:08:42 +01:00
A thread running with higher priority than normally.
2017-09-12 22:42:36 +02:00
</constant>
</constants>
</class>