Difference between revisions of "Thread:get"

m
Line 4: Line 4:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
value = Thread:get(name)
+
value = Thread:get( name )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===

Revision as of 01:09, 27 November 2012

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

Retrieves the value of a message and removes it from the thread's message box. The name of the message can be any string. The value of the message can be a boolean, string, number or a LÖVE userdata. It returns nil, if there's no message with the given name.

Function

Synopsis

value = Thread:get( name )

Arguments

string name
The name of the message.

Returns

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

See Also

Other Languages