UI
PHP Manual

Execution Scheduler

(PHP 7, UI 2.0.0)

Introduction

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

Class synopsis

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

Table of Contents


UI
PHP Manual