Difference between revisions of "Timer.delayedCall"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | + | '''Available since:''' Gideros 2011.6<br/> | |
− | ''' | + | '''Class:''' [[Timer]]<br/> |
− | ''' | + | |
− | === | + | === Description === |
− | + | Provides a simple way to call a function after a set amount of time. This function returns the '''Timer''' object created inside. | |
− | Provides a simple way to call a function after a set amount of time. This function returns the | ||
− | |||
− | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
(Timer) = Timer.delayedCall(delay,func,data) | (Timer) = Timer.delayedCall(delay,func,data) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | === | + | |
− | '''delay''': (number) | + | === Parameters === |
− | '''func''': (function) | + | '''delay''': (number) delay in miliseconds before the function is called<br/> |
− | '''data''': (any) | + | '''func''': (function) function to call<br/> |
− | === | + | '''data''': (any) an optional data parameter that is passed as a first argument to the function '''optional'''<br/> |
− | ''' | + | |
+ | === Return values === | ||
+ | '''Returns''' (Timer) the Timer object<br/> | ||
{{Timer}} | {{Timer}} |
Latest revision as of 22:37, 24 August 2024
Available since: Gideros 2011.6
Class: Timer
Description
Provides a simple way to call a function after a set amount of time. This function returns the Timer object created inside.
(Timer) = Timer.delayedCall(delay,func,data)
Parameters
delay: (number) delay in miliseconds before the function is called
func: (function) function to call
data: (any) an optional data parameter that is passed as a first argument to the function optional
Return values
Returns (Timer) the Timer object