-
Notifications
You must be signed in to change notification settings - Fork 21
Timer模块
zerlenzhang edited this page Mar 5, 2020
·
1 revision
-
反复调用某函数
-
args:
- handle : function()end
- 第一次开始前的延迟(ms) delay : int
- 调用次数,-1表示无限调用 times : int
- 每次调用时间间隔(ms) delta :int
-
返回计时器对象
local timer = Timer.Repeat(CheckServerConnect,1000,-1,5000)
-
延时调用一次某函数
-
args:
- handle : function()
- 延时(ms) delay : int
-
返回计时器对象
local timer = Timer.Once(redis_connect_to_center,5000);
- 关闭一个计时器
- args:
- 计时器对象 timer : Timer
Timer.Cancel(timer);