Difference between revisions of "Thread:execute"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")  | 
				|||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__  | __NOTOC__  | ||
| − | + | '''Available since:''' 2018.10<br/>  | |
| − | '''  | + | '''Class:''' [[Thread]]<br/>  | 
| − | '''  | ||
| − | ===   | + | === Description ===  | 
| − | + | Starts/executes the thread if a function has been set with ''setFunction'' and the thread is not currently running.  | |
| − | <  | + | <syntaxhighlight lang="lua">  | 
| − | + | local ok = thread:execute(vararg)  | |
| + | </syntaxhighlight>  | ||
| − | ===   | + | === Parameters ===  | 
| − | '''vararg  | + | '''vararg''': (...) arguments for our thread function to process<br/>  | 
| − | ===   | + | |
| − | '''ok  | + | === Return values ===  | 
| + | '''ok''': (boolean) success or failure<br/>  | ||
{{Thread}}  | {{Thread}}  | ||
Latest revision as of 14:33, 13 July 2023
Available since: 2018.10
Class: Thread
Description
Starts/executes the thread if a function has been set with setFunction and the thread is not currently running.
local ok = thread:execute(vararg)
Parameters
vararg: (...) arguments for our thread function to process
Return values
ok: (boolean) success or failure