CommandManagerMS

Kind of class:class
Inherits from:CommandMS
Version:1.0
Author:Francis Bourre
Classpath:com.bourre.commands.CommandManagerMS
File last modified:Wednesday, 31 October 2007, 07:35:29
CommandManagerMS allows to store Command objects and to loop
their execution at a specified speed in milliseconds.

That's a singleton implementation of CommandMS
To get detailed API, check CommandMS documentation.

In the example below, the specified command will be runned each second :

Example:
import com.bourre.commands.*;

function test(s:String) : Void
{
    trace("hello world");
}

CommandManagerMS.getInstance().push( new Delegate(this, test), 1000 );

Summary

Class properties
Class properties inherited from CommandMS
Instance properties
Instance properties inherited from CommandMS
Class methods

Class methods

getInstance

static function getInstance (

release

static function release (
) : Void

Instance methods

toString

function toString (
) : String
Returns the string representation of this instance.
Returns:
the string representation of this instance