Packageorg.as3lib.kitchensync.action
Classpublic class KSAsynchronousFunction
InheritanceKSAsynchronousFunction Inheritance KSFunction Inheritance AbstractAction Inheritance flash.events.EventDispatcher



Public Properties
 PropertyDefined by
 InheritedautoDelete : Boolean
autoDelete is a flag that indicates whether the action should be deleted when it is done executing.
AbstractAction
 Inheriteddelay : int
delay is the time that will pass after the start() method is called before the action begins.
AbstractAction
 Inheritedduration : *
KSFunction
 InheriteddurationHasElapsed : Boolean
Checks to see whether the duration of the action has elapsed and if the _startTime is defined.
AbstractAction
 Inheritedfunc : Function
The function that will be called by the action.
KSFunction
 InheritedisPaused : Boolean
Will return true if the action is paused (after pause() has been called).
AbstractAction
 InheritedisRunning : Boolean
Will return true when the action is running (after start() has been called).
AbstractAction
 Inheritedname : String
The human-readable name of this action.
AbstractAction
 Inheritedoffset : int
legacy accessors.
AbstractAction
 InheritedpauseTime : Timestamp
The time at which the action was last paused.
AbstractAction
 Inheritedresult : *
The result of the function (if the function generates one.
KSFunction
 InheritedstartTime : Timestamp
The time at which the action was last started.
AbstractAction
 InheritedstartTimeHasElapsed : Boolean
Checks to see whether the start time delay has elapsed and if the _startTime is defined.
AbstractAction
 Inheritedsync : Boolean
Setting sync to true will cause the action to sync up with real time even if framerate drops.
AbstractAction
 InheritedtimeStringParser : ITimeStringParser
[static] The timeStringParser will determine how strings are parsed into valid time values.
AbstractAction
Protected Properties
 PropertyDefined by
 Inherited_args : Array
Arguments that will be passed into the function.
KSFunction
 Inherited_autoDelete : Boolean
AbstractAction
  _completeEventDispatcher : IEventDispatcher
KSAsynchronousFunction
  _completeEventType : String
KSAsynchronousFunction
 Inherited_delay : int = 0
AbstractAction
 Inherited_duration : int = 0
AbstractAction
 Inherited_func : Function
KSFunction
 Inherited_name : String
AbstractAction
 Inherited_paused : Boolean = false
AbstractAction
 Inherited_pauseTime : Timestamp
AbstractAction
 Inherited_result : *
KSFunction
 Inherited_running : Boolean = false
AbstractAction
 Inherited_startTime : Timestamp
AbstractAction
 Inherited_sync : Boolean
AbstractAction
Public Methods
 MethodDefined by
  
KSAsynchronousFunction(delay:*, func:Function, completeEventDispatcher:IEventDispatcher, completeEventType:String, ... args)
KSAsynchronousFunction
 Inherited
addEventTrigger(dispatcher:IEventDispatcher, eventType:String):void
Causes the action to start playing when a specified event is fired.
AbstractAction
 Inherited
addTrigger(trigger:AbstractAction):void
Causes the action to start playing when another event completes.
AbstractAction
  
KSAsynchronousFunction
 Inherited
invoke():*
Calls the function with the arguments specified.
KSFunction
  
kill():void
KSAsynchronousFunction
 Inherited
pause():void
Causes the action to be paused.
AbstractAction
 Inherited
register():void
Adds the action as a listener to the Synchronizer's update event.
AbstractAction
 Inherited
removeEventTrigger(dispatcher:IEventDispatcher, eventType:String):void
Removes an event trigger added by addEventTrigger().
AbstractAction
 Inherited
Removes a trigger added with addTrigger().
AbstractAction
 Inherited
Starts the timer for this action.
AbstractAction
 Inherited
stop():void
Stops the action from running and resets the timer.
AbstractAction
 Inherited
unpause():void
Resumes the action at the point where it was paused.
AbstractAction
 Inherited
unregister():void
Removes the action as a listener to the Synchronizer's update event.
AbstractAction
Protected Methods
 MethodDefined by
 Inherited
complete():void
Call this when the action has completed.
AbstractAction
 Inherited
forceUpdate():void
Foreces the onUpdate() method to fire without being triggered by Synchronizer.
AbstractAction
  
onFunctionComplete(event:Event):void
Event listener that is called when the asyncronous function is completed.
KSAsynchronousFunction
 Inherited
onTrigger(event:Event):void
Handler that starts playing the action that is called by a trigger event.
AbstractAction
  
Executes the function when the delay has elapsed.
KSAsynchronousFunction
Events
 EventSummaryDefined by
 Inherited  AbstractAction
 Inherited  AbstractAction
 Inherited  AbstractAction
 Inherited  AbstractAction
Property detail
_completeEventDispatcherproperty
protected var _completeEventDispatcher:IEventDispatcher
_completeEventTypeproperty 
protected var _completeEventType:String
Constructor detail
KSAsynchronousFunction()constructor
public function KSAsynchronousFunction(delay:*, func:Function, completeEventDispatcher:IEventDispatcher, completeEventType:String, ... args)Parameters
delay:*
 
func:Function
 
completeEventDispatcher:IEventDispatcher
 
completeEventType:String
 
... args
Method detail
clone()method
public override function clone():AbstractAction

Returns
AbstractAction
kill()method 
public override function kill():void
onFunctionComplete()method 
protected function onFunctionComplete(event:Event):void

Event listener that is called when the asyncronous function is completed.

Parameters
event:Event
onUpdate()method 
protected override function onUpdate(event:KitchenSyncEvent):void

Executes the function when the delay has elapsed.

Parameters
event:KitchenSyncEvent