Difference between revisions of "Coroutine.status"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
<languages />
+
'''Available since:''' Gideros 2011.6<br/>
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
+
'''Class:''' [[coroutine]]<br/>
'''<translate>Class</translate>:''' [[Special:MyLanguage/coroutine|coroutine]]<br/>
+
 
=== <translate>Description</translate> ===
+
=== Description ===
<translate>Returns the status of [[Special:MyLanguage/coroutine|coroutine]] co, as a string: "running", if the coroutine is running (that is, it called status); "suspended", if the coroutine is suspended in a call to yield, or if it has not started running yet; "normal" if the coroutine is active but not running (that is, it has resumed another coroutine); and "dead" if the coroutine has finished its body function, or if it has stopped with an error.</translate>
+
Returns the status of coroutine co as a string.
 
<source lang="lua">
 
<source lang="lua">
 
(string) = coroutine.status(co)
 
(string) = coroutine.status(co)
 
</source>
 
</source>
=== <translate>Parameters</translate> ===
+
 
'''co''': (coroutine) <translate>coroutine to check status for</translate> <br/>
+
''''running', if the coroutine is running (that is, it called status); 'suspended', if the coroutine is suspended in a call to yield, or if it has not started running yet; 'normal' if the coroutine is active but not running (that is, it has resumed another coroutine); and 'dead' if the coroutine has finished its body function, or if it has stopped with an error'''
=== <translate>Return values</translate> ===
+
 
'''<translate>Returns</translate>''' (string) <translate>the state of coroutine</translate><br/>
+
=== Parameters ===
 +
'''co''': (thread) coroutine to check status for<br/>
 +
 
 +
=== Return values ===
 +
'''Returns''' (string) the state of coroutine<br/>
  
 
{{Coroutine}}
 
{{Coroutine}}

Revision as of 23:58, 22 January 2023

Available since: Gideros 2011.6
Class: coroutine

Description

Returns the status of coroutine co as a string.

(string) = coroutine.status(co)
'running', if the coroutine is running (that is, it called status); 'suspended', if the coroutine is suspended in a call to yield, or if it has not started running yet; 'normal' if the coroutine is active but not running (that is, it has resumed another coroutine); and 'dead' if the coroutine has finished its body function, or if it has stopped with an error

Parameters

co: (thread) coroutine to check status for

Return values

Returns (string) the state of coroutine