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
}

目次

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top