はじめに
PHP Manual
PHP Manual»UI»UI\Executor

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