2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2021-06-04 16:03:15 +00:00
<class name= "Semaphore" inherits= "RefCounted" version= "4.0" >
2017-09-12 20:42:36 +00:00
<brief_description >
2019-06-21 23:04:47 +00:00
A synchronization semaphore.
2017-09-12 20:42:36 +00:00
</brief_description>
<description >
2019-06-21 23:04:47 +00: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 20:42:36 +00:00
</description>
<tutorials >
2020-08-05 12:43:40 +00:00
<link title= "Using multiple threads" > https://docs.godotengine.org/en/latest/tutorials/threads/using_multiple_threads.html</link>
2017-09-12 20:42:36 +00:00
</tutorials>
<methods >
<method name= "post" >
2020-03-03 08:26:42 +00:00
<return type= "void" >
2017-09-12 20:42:36 +00:00
</return>
<description >
2020-03-03 08:26:42 +00:00
Lowers the [Semaphore], allowing one more thread in.
2017-09-12 20:42:36 +00:00
</description>
</method>
2020-03-09 09:12:53 +00:00
<method name= "try_wait" >
<return type= "int" enum= "Error" >
2020-03-03 08:26:42 +00:00
</return>
<description >
2020-03-09 09:12:53 +00: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 08:26:42 +00:00
</description>
</method>
2020-03-09 09:12:53 +00:00
<method name= "wait" >
<return type= "void" >
2017-09-12 20:42:36 +00:00
</return>
<description >
2020-03-09 09:12:53 +00:00
Waits for the [Semaphore], if its value is zero, blocks until non-zero.
2017-09-12 20:42:36 +00:00
</description>
</method>
</methods>
<constants >
</constants>
</class>