| Package | org.springextensions.actionscript.cairngorm |
| SVN browsing | AbstractResponder.as |
| Fisheye | AbstractResponder.as |
| Class | public class AbstractResponder |
| Implements | mx.rpc.IResponder |
| Method | Defined by | ||
|---|---|---|---|
|
Creates an AbstractResponder instance.
| AbstractResponder | ||
|
fault(info:Object):void
Invokes the
unregister() method. | AbstractResponder | ||
|
result(data:Object):void
Invokes the
unregister() method. | AbstractResponder | ||
| Method | Defined by | ||
|---|---|---|---|
|
unregister():void
Checks if the current
AbstractResponder implements the ICommand interface and, if so,
invokes the unregister() method on the PendingCommandRegistry singleton. | AbstractResponder | ||
| AbstractResponder | () | constructor |
public function AbstractResponder(self:AbstractResponder)Creates an AbstractResponder instance. Abstract class should never be instantiated directly. AbstractResponder implementations should pass themselves to the AbstractResponder's constructor.
Parametersself:AbstractResponder — A reference to the AbstractResponder itself.
|
— when the self constructor argument is not equal to the current AbstractResponder.
|
| fault | () | method |
public function fault(info:Object):void
Invokes the unregister() method.
info:Object |
| result | () | method |
public function result(data:Object):void
Invokes the unregister() method.
data:Object |
| unregister | () | method |
protected function unregister():void
Checks if the current AbstractResponder implements the ICommand interface and, if so,
invokes the unregister() method on the PendingCommandRegistry singleton.
See also