Difference between revisions of "Channel:supply"
(Add new timeout variant and return value) |
m |
||
(2 intermediate revisions by one other user not shown) | |||
Line 11: | Line 11: | ||
{{param|Variant|value|The contents of the message.}} | {{param|Variant|value|The contents of the message.}} | ||
=== Returns === | === Returns === | ||
− | {{New feature| | + | {{New feature|11.0| |
{{param|boolean|success|Whether the message was successfully supplied (always <code>true</code>).}} | {{param|boolean|success|Whether the message was successfully supplied (always <code>true</code>).}} | ||
|110}} | |110}} | ||
== Function == | == Function == | ||
− | {{newin|[[ | + | {{newin|[[11.0]]|110|type=variant}} |
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> | ||
Line 23: | Line 23: | ||
=== Arguments === | === Arguments === | ||
{{param|Variant|value|The contents of the message.}} | {{param|Variant|value|The contents of the message.}} | ||
− | {{param|number|timeout|The maximum amount of time to wait.}} | + | {{param|number|timeout|The maximum amount of time to wait, in seconds.}} |
=== Returns === | === Returns === | ||
{{param|boolean|success|Whether the message was successfully supplied before the timeout expired.}} | {{param|boolean|success|Whether the message was successfully supplied before the timeout expired.}} |
Latest revision as of 11:06, 7 July 2021
Available since LÖVE 0.9.0 |
This function is not supported in earlier versions. |
Send a message to the thread Channel and wait for a thread to accept it.
See Variant for the list of supported types.
Contents
Function
Synopsis
success = Channel:supply( value )
Arguments
Variant value
- The contents of the message.
Returns
Available since LÖVE 11.0
boolean success
- Whether the message was successfully supplied (always
true
).
Function
Available since LÖVE 11.0 |
This variant is not supported in earlier versions. |
Synopsis
success = Channel:supply( value, timeout )
Arguments
Variant value
- The contents of the message.
number timeout
- The maximum amount of time to wait, in seconds.
Returns
boolean success
- Whether the message was successfully supplied before the timeout expired.
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info