| Package | jp.sourceforge.larch.core.action.command |
| Class | public class RemotingCommand |
| Inheritance | RemotingCommand Command |
| Implements | mx.rpc.IResponder |
| Method | Defined by | ||
|---|---|---|---|
|
RemotingCommand(aTarget:Object = null, aTargetProperty:String = null)
コンストラクタ
| RemotingCommand | ||
|
execute():void
サブクラスのコマンド処理を実行します。
| RemotingCommand | ||
|
fault(data:Object):void
非同期処理の異常終了処理です。
警告を表示します。
| RemotingCommand | ||
|
result(data:Object):void
非同期処理の正常終了処理です。
サブクラスの正常終了処理を実行後、次のコマンドを実行します。
| RemotingCommand | ||
| Method | Defined by | ||
|---|---|---|---|
|
doExecute():AsyncToken
コマンドの処理を実行します。
サブクラスにて実装してください。
| RemotingCommand | ||
|
doResult(data:ResultEvent):void
正常終了処理を実行します。
サブクラスにて実装してください。
| RemotingCommand | ||
| RemotingCommand | () | constructor |
public function RemotingCommand(aTarget:Object = null, aTargetProperty:String = null)コンストラクタ
ParametersaTarget:Object (default = null) — 結果の設定先
|
|
aTargetProperty:String (default = null) — 結果の設定先のプロパティ名
|
| doExecute | () | method |
protected function doExecute():AsyncTokenコマンドの処理を実行します。 サブクラスにて実装してください。
ReturnsAsyncToken — 非同期処理のトークン
|
| doResult | () | method |
protected function doResult(data:ResultEvent):void正常終了処理を実行します。 サブクラスにて実装してください。
Parametersdata:ResultEvent — 処理結果
|
| execute | () | method |
public override function execute():voidサブクラスのコマンド処理を実行します。
| fault | () | method |
public function fault(data:Object):void非同期処理の異常終了処理です。 警告を表示します。
Parametersdata:Object — 処理結果
|
| result | () | method |
public function result(data:Object):void非同期処理の正常終了処理です。 サブクラスの正常終了処理を実行後、次のコマンドを実行します。
Parametersdata:Object — 処理結果
|