Packagenet.guttershark.support.servicemanager.http
Classpublic final class ServiceCall
InheritanceServiceCall Inheritance BaseCall

The ServiceCall class makes the http calls that a service class requests.



Public Properties
 PropertyDefined by
 Inheritedid : String
The id of this call.
BaseCall
 Inheritedlimiter : Limiter
Limiter
BaseCall
Protected Properties
 PropertyDefined by
 Inheritedattempts : int
How many attempts to allows.
BaseCall
 InheritedcallTimer : Timer
The call timer.
BaseCall
 Inheritedcompleted : Boolean
Whether or not this call is complete.
BaseCall
 Inheritedprops : Object
Call properties for this call.
BaseCall
 Inheritedtries : int
How many tries have occured.
BaseCall
Public Methods
 MethodDefined by
  
ServiceCall(url:String, callProps:Object)
Constructor for ServiceCall instances.
ServiceCall
  
dispose():void
Dispose of this call.
ServiceCall
  
execute():void
Executes the service call (for non file uploads).
ServiceCall
  
uploadFile():void
Execute this service for file uploads.
ServiceCall
Protected Methods
 MethodDefined by
 Inherited
callComplete():void
On service call complete.
BaseCall
 Inherited
Checks if an onFault functionw as defined in the callProps object.
BaseCall
 Inherited
Checks if an onResult function was defined in the callProps object.
BaseCall
 Inherited
onTick(e:TimerEvent):void
On timer tick.
BaseCall
Constructor detail
ServiceCall()constructor
public function ServiceCall(url:String, callProps:Object)

Constructor for ServiceCall instances.

Parameters
url:String
 
callProps:Object
Method detail
dispose()method
public override function dispose():void

Dispose of this call.

execute()method 
public override function execute():void

Executes the service call (for non file uploads).

uploadFile()method 
public function uploadFile():void

Execute this service for file uploads.