Execution Scheduler

(UI 2.0.0)

Introduction

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

Class synopsis

abstractclassUI\Executor {
public__construct()
public__construct(int$microseconds)
public__construct(int$seconds, int$microseconds)
publickill(): void
abstractprotectedonExecute(): void
publicsetInterval(int$microseconds): bool
publicsetInterval(int$seconds, int$microseconds): bool
}

Table of Contents

To Top