Difference between revisions of "Thread:get"

(Created page with "{{newin|0.8.0|080|type=function|text=It has been renamed from Thread:receive}} Get a value (cross-threads). Returns nil when a message is not in the message box. == Funct...")
 
m
Line 13: Line 13:
 
== See Also ==
 
== See Also ==
 
* [[parent::Thread]]
 
* [[parent::Thread]]
 +
* [[Thread:set]]
 
* [[TSerial]] can convert tables to/from strings, so you can pass tables between threads.
 
* [[TSerial]] can convert tables to/from strings, so you can pass tables between threads.
 
[[Category:Functions]]
 
[[Category:Functions]]

Revision as of 14:59, 6 February 2012

Available since LÖVE 0.8.0
It has been renamed from Thread:receive.

Get a value (cross-threads). Returns nil when a message is not in the message box.

Function

Synopsis

value = Thread:get(name)

Arguments

string name
The name of the message.

Returns

boolean, number, string or userdata value
The contents of the message or nil when no message in message box.

See Also

Other Languages