2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name= "Semaphore" inherits= "Reference" version= "4.0" >
2017-09-12 22:42:36 +02:00
<brief_description >
2019-06-22 01:04:47 +02:00
A synchronization semaphore.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2019-06-22 01:04:47 +02:00
A synchronization semaphore which can be used to synchronize multiple [Thread]s. Initialized to zero on creation. Be careful to avoid deadlocks. For a binary version, see [Mutex].
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2020-08-05 14:43:40 +02:00
<link title= "Using multiple threads" > 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= "post" >
2020-03-03 09:26:42 +01:00
<return type= "void" >
2017-09-12 22:42:36 +02:00
</return>
<description >
2020-03-03 09:26:42 +01:00
Lowers the [Semaphore], allowing one more thread in.
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-03-09 10:12:53 +01:00
<method name= "try_wait" >
<return type= "int" enum= "Error" >
2020-03-03 09:26:42 +01:00
</return>
<description >
2020-03-09 10:12:53 +01:00
Like [method wait], but won't block, so if the value is zero, fails immediately and returns [constant ERR_BUSY]. If non-zero, it returns [constant OK] to report success.
2020-03-03 09:26:42 +01:00
</description>
</method>
2020-03-09 10:12:53 +01:00
<method name= "wait" >
<return type= "void" >
2017-09-12 22:42:36 +02:00
</return>
<description >
2020-03-09 10:12:53 +01:00
Waits for the [Semaphore], if its value is zero, blocks until non-zero.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<constants >
</constants>
</class>