Packagemx.rpc
Interfacepublic interface IResponder
ImplementorsItemResponder

This interface provides the contract for any service that needs to respond to remote or asynchronous calls.



Public Methods
 MethodDefined by
  
fault(info:Object):void
This method is called by a service when an error has been received.
IResponder
  
result(data:Object):void
This method is called by a service when the return value has been received.
IResponder
Method detail
fault()method
public function fault(info:Object):void

This method is called by a service when an error has been received. While info is typed as Object it is often (but not always) an mx.rpc.events.FaultEvent.

Parameters
info:Object
result()method 
public function result(data:Object):void

This method is called by a service when the return value has been received. While data is typed as Object, it is often (but not always) an mx.rpc.events.ResultEvent.

Parameters
data:Object