teal-src/util/timer.d.tl
author Matthew Wild <mwild1@gmail.com>
Thu, 06 Oct 2022 11:12:57 +0100
changeset 12745 7b3deafb9162
parent 12628 7eca6c919d5e
permissions -rw-r--r--
prosodyctl: check turn: More clearly indicate the error is from TURN server

local record util_timer
	record task end
	type timer_callback = function (number) : number
	add_task : function ( number, timer_callback, any ) : task
	stop : function ( task )
	reschedule : function ( task, number ) : task
end
return util_timer