Difference between revisions of "Channel:push"

m (value → Variant)
m (Return ID in LOVE 11.0)
 
Line 6: Line 6:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
Channel:push( value )
+
id = Channel:push( value )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
 
{{param|Variant|value|The contents of the message.}}
 
{{param|Variant|value|The contents of the message.}}
 
=== Returns ===
 
=== Returns ===
None.
+
{{New feature|11.0|
 +
{{param|number|id|Identifier which can be supplied to [[Channel:hasRead]]}}
 +
|110}}
 
== See Also ==
 
== See Also ==
 
* [[parent::Channel]]
 
* [[parent::Channel]]

Latest revision as of 11:23, 11 June 2018

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

Send a message to the thread Channel.

See Variant for the list of supported types.

Function

Synopsis

id = Channel:push( value )

Arguments

Variant value
The contents of the message.

Returns

Available since LÖVE 11.0
number id
Identifier which can be supplied to Channel:hasRead

See Also

Other Languages