Difference between revisions of "Channel:getCount"

m
m
Line 1: Line 1:
 
{{newin|[[0.9.0]]|090|type=function}}
 
{{newin|[[0.9.0]]|090|type=function}}
Retrieves the number of messages in the thread channels queue. The name of the message can be any string.
+
Retrieves the number of messages in the thread [[Channel]] queue.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
value = Channel:getCount( name )
+
value = Channel:getCount( )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|string|name|The name of the message.}}
+
None.
 
=== Returns ===
 
=== Returns ===
 
{{param|number|value|The amount of messages in the queue.}}
 
{{param|number|value|The amount of messages in the queue.}}
 
== See Also ==
 
== See Also ==
 
* [[parent::Channel]]
 
* [[parent::Channel]]
 +
* [[Channel:pop]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Retrieves the number of messages in the thread channels queue.}}
+
{{#set:Description=Retrieves the number of messages in the [[Channel]] queue.}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|Channel:count}}
 
{{i18n|Channel:count}}

Revision as of 06:31, 5 June 2013

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

Retrieves the number of messages in the thread Channel queue.

Function

Synopsis

value = Channel:getCount( )

Arguments

None.

Returns

number value
The amount of messages in the queue.

See Also

Other Languages