2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2019-04-01 12:33:56 +02:00
<class name= "Mutex" inherits= "Reference" category= "Core" version= "3.2" >
2017-09-12 22:42:36 +02:00
<brief_description >
2019-06-22 01:04:47 +02:00
A synchronization mutex (mutual exclusion).
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2019-06-22 01:04:47 +02:00
A synchronization mutex (mutual exclusion). This is used to synchronize multiple [Thread]s, and is equivalent to a binary [Semaphore]. It guarantees that only one thread can ever acquire the lock at a time. A mutex can be used to protect a critical section; however, be careful to avoid deadlocks.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2019-10-02 18:19:06 +02:00
<link > https://docs.godotengine.org/en/latest/tutorials/threads/using_multiple_threads.html</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
<method name= "lock" >
<return type= "void" >
</return>
<description >
2019-06-22 01:04:47 +02:00
Locks this [Mutex], blocks until it is unlocked by the current owner.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "try_lock" >
<return type= "int" enum= "Error" >
</return>
<description >
2019-06-22 01:04:47 +02:00
Tries locking this [Mutex], but does not block. Returns [constant OK] on success, [constant ERR_BUSY] otherwise.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "unlock" >
<return type= "void" >
</return>
<description >
2019-06-22 01:04:47 +02:00
Unlocks this [Mutex], leaving it to other threads.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<constants >
</constants>
</class>