Execution Scheduler

Introduction

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

Class synopsis

UI\Executor
abstract class UI\Executor {
/* Constructor */
public __construct()
public __construct(int $microseconds)
public __construct(int $seconds, int $microseconds)
/* Methods */
public void kill()
abstract protected void onExecute()
public bool setInterval(int $microseconds)
public bool setInterval(int $seconds, int $microseconds)
}
Table of Contents