I call a RemoteObject method inside a loop. This method receive a row id as parameter that deletes the row in a database. Inside a loop, lots of calls could be made at once. Some of the calls could fire a FaultEvent. How do I detect the row id that fired the FaultEvent?
The remoteobject:
<mx:RemoteObject id="myTableFactory" destination="myTableFactoryFactory"/>
The loop:
myTableFactory.addEventListener(FaultEvent.FAULT, faultFunction);
for each (var myTableRow:myTable in rowsToBeExcludedArray)
{
myTableFactory.removeMyTableRow(myTableRow.id);
}
private function faultFunction(e:FaultEvent):void
{
// The main question. How to get myTableRow.id that fired the FaultEvent
}
Thanks.
Carlos Lima.
You should definitely read up on AsyncToken.
Every remote procedure call on a RemoteObject will return one:
There are now two things you can do with this token.
Add a Responder
You can add a Responder to each call, which gives you the possibility to have a unique handler for each call:
Be sure to remove your global result and fault handlers before trying this. Also I've used the default
Responder
class here, but any class implementing IResponder will do.Piggyback your id
You can add new properties to the token since it's a dynamic class. For instance the
id
may come in handy here:Or maybe even the entire class:
Now you can find these values in the event handlers:
The same principle applies to
FaultEvent