Hey Guys,
If you want to preserve data which is request specifc, I have an example for you:
Lets say your using pureMVC and you have a user window, and you make a request by notification and you want to remember who made that call (like the mediator name or something).
One way is to add the data to the asyncToken, so
var token:AsyncToken = service.getUsers;
toke.preservedData = {bla:bla}
And after the result comes, you extract it from the ResultEvent like:
trace( event.token.preservedData );
~~~~~~~~~~~~~~~~
There is another way...
If you want to keep things more strictly typed, you can you a custom Responder: