Package | com.soma.core.interfaces |
Interface | public interface IResponder |
Author: Romuald Quantin - www.soundstep.com
Resources: http://www.soundstep.com/downloads/somacore
Actionscript version: 3.0
Copyright: Mozilla Public License 1.1 (MPL 1.1) http://www.opensource.org/licenses/mozilla1.1.php
Interface used by a class that receive data from a asynchronous call.See also
Method | Defined By | ||
---|---|---|---|
fault(info:Object):void
Method that receives a fault object. | IResponder | ||
result(data:Object):void
Method that receives a success object. | IResponder |
fault | () | method |
public function fault(info:Object):void
Method that receives a fault object.
Parameters
info:Object — The fault Object.
|
result | () | method |
public function result(data:Object):void
Method that receives a success object.
Parameters
data:Object — THe success Object.
|