Apache – synchronous and asynchronous call in flex

apache-flexflex3

what is synchronous and asynchronous call in flex. Why Httpservice is asynchronous and how to make a call to asynchronous call.

Thanks,
Ravi

Best Answer

All remote calls are asynchronous in FlashPlayer. Adobe Virtual Machine 2 doesn't support multi-threading to do any call synchronously. Remote call gives you an object (for example AsyncToken) that will dispatch event on result or fault.

Related Topic