## timer\_t ### 概述 定时器系统。 ### 函数

| 函数名称 | 说明 | | -------- | ------------ | | timer\_add | 增加一个timer。 | | timer\_count | 返回timer的个数。 | | timer\_next\_time | 返回最近的timer到期时间。 | | timer\_now | 获取当前时间(ms)。 | | timer\_queue | 用于非GUI线程增加一个timer,本函数向主循环的事件队列中发送一个增加timer的请求。 | | timer\_remove | 删除指定的timer。 | | timer\_set\_on\_destroy | 设置一个回调函数,在timer被销毁时调用(方便脚本语言去释放回调函数)。 | ### 属性

| 名属性称 | 类型 | 说明 | | -------- | ----- | ------------ | ### 事件

| 事件名称 | 类型 | 说明 | | -------- | ----- | ------- | #### timer\_add 函数 ----------------------- | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | uint32\_t | 返回timer的ID,TK\_INVALID\_ID表示失败。 | | on\_timer | timer\_func\_t | timer回调函数。 | | ctx | void* | timer回调函数的上下文。 | | duration\_ms | uint32\_t | 时间。 |

增加一个timer。 #### timer\_count 函数 ----------------------- | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | uint32\_t | 返回timer的个数。 |

返回timer的个数。 #### timer\_next\_time 函数 ----------------------- | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | uint32\_t | 返回最近的timer到期时间。 |

返回最近的timer到期时间。 #### timer\_now 函数 ----------------------- | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | uint32\_t | 返回获取当前时间(ms)。 |

获取当前时间(ms)。 #### timer\_queue 函数 ----------------------- | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | | timer\_func\_t | r | | ctx | void* | timer回调函数的上下文。 | | duration\_ms | uint32\_t | 时间。 |

用于非GUI线程增加一个timer,本函数向主循环的事件队列中发送一个增加timer的请求。 timer回调函数,回调函数返回RET_REPEAT,则下次继续执行,否则自动移出。 #### timer\_remove 函数 ----------------------- | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | timer\_id | uint32\_t | timerID。 |

删除指定的timer。 #### timer\_set\_on\_destroy 函数 ----------------------- | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | timer\_id | uint32\_t | timerID。 | | on\_destroy | tk\_destroy\_t | 回调函数。 | | on\_destroy\_ctx | void* | 回调函数上下文。 |

设置一个回调函数,在timer被销毁时调用(方便脚本语言去释放回调函数)。