What is AsyncToken and why is it preferred over just calling the Remote Object's method and adding listeners to the method for the result and fault?
"This class provides a place to set additional or token-level data for asynchronous RPC operations. It also allows an IResponder to be attached for an individual call." What is an example of why you would need to attach the IReponder (addResponser) to a particular method call? Again, I see on another site this "In you application you have multiple service calls happening at the same time and you need to know which data coming back belongs to which call.". Calling the same method/service (getPeople) multiple times in the same instance or just calling multiple methods (getPeople, getPlaces, getThings) at the same time? I never had a problem with Flex mixing up the results of multiple methods being called before as a view loads up.. Thanks for any info you can provide.

