Packagecom.bourre.commands
Classpublic class CommandManagerFPS
InheritanceCommandManagerFPS Inheritance CommandFPS

Player version: Flash Player 9.0
Language version: ActionScript 3.0

The CommandManagerFPS class defines singleton access to CommandFPS object.

See also

CommandFPS


Public Methods
 MethodDefined by
 Inherited
delay(oC:Command):String
Stores passed-in command and wait for a loop before executes it.
Command is removed after execution.
CommandFPS
  
[static] Returns singleton instance of CommandManagerFPS
CommandManagerFPS
 Inherited
getLength():Number
Returns execution list length.
CommandFPS
 Inherited
onTick(e:Event = null):void
Method called by the TickBeacon for each step of time according to its time slicing approach.
CommandFPS
 Inherited
push(oC:Command):String
Adds passed-in command to execution list and execute it now.
CommandFPS
 Inherited
pushWithName(oC:Command, sN:String = null):String
Adds passed-in command to execution list and executes it now.
CommandFPS
  
release():void
[static] Releases instance.
CommandManagerFPS
 Inherited
remove(oC:Command):Boolean
Removes passed-in command from execution list.
CommandFPS
 Inherited
removeAll():void
Removes all objects from execution list and from buffer.
CommandFPS
 Inherited
removeWithName(sN:String):Boolean
Removes command registered with passed-in name from execution list.
CommandFPS
 Inherited
resume(oC:Command):Boolean
Submits passed-in command into execution list.
CommandFPS
 Inherited
resumeWithName(sN:String):Boolean
Submits command registered with passed-in name into execution list.
CommandFPS
 Inherited
stop(oC:Command):Boolean
Excludes passed-in command from execution list.
CommandFPS
 Inherited
stopWithName(sN:String):Boolean
Excludes command registered with passed-in name from execution list.
CommandFPS
 Inherited
toString():String
Returns string representation of instance.
CommandFPS
Protected Methods
 MethodDefined by
 Inherited
_delay(oC:Command, sN:String):void
Executes a delay call.
CommandFPS
 Inherited
_getNameID():String
Returns a unique identifier.
CommandFPS
 Inherited
_push(oC:Command, sN:String):String
Registers passed-in command with passed-in name.
CommandFPS
 Inherited
_remove(s:String):Boolean
Removes command registered with passed-in identifier.
CommandFPS
 Inherited
_resume(s:String):Boolean
Adds command registered with passed-in identifier into execution list.
CommandFPS
 Inherited
_stop(s:String):Boolean
Excludes command registered with passed-in identifier from execution list.
CommandFPS
Method detail
getInstance()method
public static function getInstance():CommandManagerFPS

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Returns singleton instance of CommandManagerFPS

Returns
CommandManagerFPS — The singleton instance of CommandManagerFPS
release()method 
public static function release():void

Player version: Flash Player 9.0
Language version: ActionScript 3.0

Releases instance.