Packagecom.asfusion.mate.events
Classpublic dynamic class ResponseEvent
InheritanceResponseEvent Inheritance flash.events.Event

Event used by ServiceResponseHandler to notify responses.



Public Properties
 PropertyDefined by
  data : Object
Data Object (holder for custom data)
ResponseEvent
  fault : Object
Fault Object from a service
ResponseEvent
  result : Object
Result Object from a service
ResponseEvent
Public Methods
 MethodDefined by
  
ResponseEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Constructor
ResponseEvent
Public Constants
 ConstantDefined by
  FAULT : String = "fault"
[static] Indicates that a fault has been received.
ResponseEvent
  RESPONSE : String = "response"
[static] Indicates that a response has been received.
ResponseEvent
  RESULT : String = "result"
[static] Indicates that a result has been received.
ResponseEvent
Property detail
dataproperty
public var data:Object

Data Object (holder for custom data)

faultproperty 
public var fault:Object

Fault Object from a service

resultproperty 
public var result:Object

Result Object from a service

Constructor detail
ResponseEvent()constructor
public function ResponseEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)

Constructor

Parameters
type:String
 
bubbles:Boolean (default = false)
 
cancelable:Boolean (default = false)
Constant detail
FAULTconstant
public static const FAULT:String = "fault"

Indicates that a fault has been received. Recomended to be dispatched from a faultHandlers.

RESPONSEconstant 
public static const RESPONSE:String = "response"

Indicates that a response has been received.

RESULTconstant 
public static const RESULT:String = "result"

Indicates that a result has been received. Recomended to be dispatched from a resultHandlers.