Packageorg.mvcexpress.messenger
Classpublic class HandlerVO
InheritanceHandlerVO Inheritance Object

Framework internal value data for message handlers.

Has a flag to be disabled. If it is disabled it will be not called and removed with first message of same type.



Public Properties
 PropertyDefined By
  disabled : Boolean
FOR INTERNAL USE ONLY, marks message for removal, with next message call of same type.
HandlerVO
  handler : Function
FOR INTERNAL USE ONLY, function that handles message parameters, can be Mediator function or Command execute() function
HandlerVO
  handlerClassName : String
FOR INTERNAL USE ONLY, Variable to store class there handler came from.
HandlerVO
  isExecutable : Boolean
FOR INTERNAL USE ONLY, shows if message is handled by Cammand.
HandlerVO
Property Detail
disabledproperty
public var disabled:Boolean

FOR INTERNAL USE ONLY, marks message for removal, with next message call of same type.

handlerproperty 
public var handler:Function

FOR INTERNAL USE ONLY, function that handles message parameters, can be Mediator function or Command execute() function

handlerClassNameproperty 
public var handlerClassName:String

FOR INTERNAL USE ONLY, Variable to store class there handler came from. (for debugging)

isExecutableproperty 
public var isExecutable:Boolean

FOR INTERNAL USE ONLY, shows if message is handled by Cammand.