Service

Kind of class: public class
Package:
Inherits from:
  • EventDispatcher
Classpath: org.asaplibrary.data.xml.Service
File last modified: Friday, 13 May 2011, 22:20:34
Base class for loading XML data, with or without parameters. Extend this class to create a proper service for use in a MVCS-patterned application. The base class provides functionality for transferring an Object with parameters to the request, loading the XML, a virtual function for parsing the result, parsing a list, and error handling on response & parsing. When extending this class, the function protected function processData (inData:XML, inName:String) : void; has to be overridden & implemented to handle a successful load. When parsing a list of XMl nodes into an array of objects of one class, the parseList() function can be used.

Summary

Constructor
Instance methods
  • load (inURLData:URLData, inSendData:Object = null, inShowLog:Boolean = false, inDoPost:Boolean = false) : void
    • Load from specified location, optionally with specified parameters
  • setLoaderCount (inLoaderCount:int) : void
    • Set the number of parallel loaders

Constructor

Service

function Service()

Instance methods

load

function load(inURLData:URLData, inSendData:Object = null, inShowLog:Boolean = false, inDoPost:Boolean = false) : void

Load from specified location, optionally with specified parameters

Parameters
inURLData :url of xml data to be loaded
inPostData:optional object containing parameters to be posted
inShowLog :if true, a Log.info message is produced containing url & name
inDoPost :if true, a POST is used as request method, otherwise GET

setLoaderCount

function setLoaderCount(inLoaderCount:int) : void

Set the number of parallel loaders