2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 14:18:53 +01:00
<class name= "Semaphore" inherits= "RefCounted" version= "4.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
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 >
2021-11-15 10:43:07 +01:00
<link title= "Using multiple threads" > $DOCS_URL/tutorials/performance/using_multiple_threads.html</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
<method name= "post" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "int" enum= "Error" />
2020-03-03 09:26:42 +01:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2017-09-12 22:42:36 +02:00
<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>
</class>