Reputation: 10626
I have to load a lot of data from BlazeDS and/or Livecycle DS service to Adobe Flex and would like to find out what's available from memory stand point. This is similar to querying in java: long heapSize = Runtime.getRuntime().totalMemory()
Upvotes: 1
Views: 1557
Reputation: 16085
You can't find the available memory, but you can find the memory currently in use via the System.totalMemory
property.
http://livedocs.adobe.com/flex/3/langref/flash/system/System.html#totalMemory
Upvotes: 1