Execution Scheduler

(UI 2.0.0)

简介

This facility schedules repetitive execution of a callback, useful for animations and other such activities.

类摘要

abstract class UI\Executor {
/* Constructor */
public function __construct()
public function __construct(int $microseconds)
public function __construct(int $seconds, int $microseconds)
/* 方法 */
public function kill(): void
abstract protected function onExecute(): void
public function setInterval(int $microseconds): bool
public function setInterval(int $seconds, int $microseconds): bool
}

目录

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top