Class fever.events.EventPriority

Description

Defines constant values for the priority argument of fever.events.PriorityEventBroadcaster.addListener() and fever.events.PriorityEventBroadcaster.addEventListener() methods.

See Also

Field Index

DEFAULT, HIGHER, LOCALISATION_MANAGMENT, LOWER

Field Detail

DEFAULT

static public DEFAULT:Number
Event handlers are executed with the default priority, 0.

HIGHER

static public HIGHER:Number
Event handlers are executed with the higher priority, 1000.
Thus they are executed before any others lower priority handlers.

Usefull, for example, for Fever localisation resources which have to be updated before the concrete application.

LOCALISATION_MANAGMENT

static public LOCALISATION_MANAGMENT:Number
Event handlers are executed with the specific priority of 2000.
Used for Fever localisation resources which have to be updated before the concrete application.

LOWER

static public LOWER:Number
Event handlers are executed with the lower priority, -1000.
Thus they are executed after any others handlers.