scheduleAtFixedRate

fun scheduleAtFixedRate(task: Runnable?, intervalInMills: Long?)
fun scheduleAtFixedRate(intervalInMills: Long?, task: () -> Unit? = null)

以固定的频率执行任务

Parameters

task

待执行的任务

intervalInMills

执行的频率 单位为ms