Table of Contents

ObjectState

Namespace
ZCore

This enumeration is used to represent the state of an object. When starting an application, the object state gets initialized with Booting - some objects need a complex initilization routine, where this state is used. Use Object.SetBusy(TRUE|FALSE), Object.Abort('message'), Object.assert(obj) and all related methods to manipulate the state of an object.

Fields

Booting = 0
BootingError = 1
Idle = 2
Busy = 3
Error = 4