protected var _appservername:String
public var call:Function
protected var _concurrency:String = "multiple"
concurrency:String
[read-write]
Value that indicates how to handle multiple calls to the same service.
The following values are permitted:
AMF0RemoteObject.MULTIPLE
. Existing requests are not cancelled, and the developer is responsible for ensuring the consistency of returned data by carefully managing the event stream. This is the default.
AMF0RemoteObject.SINGLE
. Only a single request at a time is allowed on the operation; multiple requests generate a fault.
AMF0RemoteObject.LAST
. Making a request cancels any existing request.
This property can be used as the source for data binding.
Implementation
public function get concurrency():String
public function set concurrency(value:String):void
protected var _destination:String
destination:String
[read-write]
This property can be used as the source for data binding.
Implementation
public function get destination():String
public function set destination(value:String):void
protected var _endpoint:String
endpoint:String
[read-write]
This property can be used as the source for data binding.
Implementation
public function get endpoint():String
public function set endpoint(value:String):void
protected var _id:String
protected var _isbusy:Boolean = false
public var method:*
protected var _requestTimeout:Number = 0
requestTimeout:int
[read-write]
This property can be used as the source for data binding.
Implementation
public function get requestTimeout():int
public function set requestTimeout(value:int):void
respondercounter:int
[read-write]
This property can be used as the source for data binding.
Implementation
protected function get respondercounter():int
protected function set respondercounter(value:int):void
protected var _responders:ArrayCollection
protected var _showBusyCursor:Boolean = false
showBusyCursor:Boolean
[read-write]
inheritDoc
This property can be used as the source for data binding.
Implementation
public function get showBusyCursor():Boolean
public function set showBusyCursor(value:Boolean):void
protected var _view:Object
public function AbstractRPCObject()
flash_proxy override function callProperty(method:*, ... args):*
Overrides the behavior of an object property that can be called as a function.
Parameters
Returns
protected final function getAccess():AbstractRestriction
Returns
public function initialized(view:Object, id:String):void
Parameters
protected function makeCall(method:String, args:Array):AsyncToken
This is where the RPC function call implemntation should be placed.
Parameters
Returns
protected function onFault(evt:RPCEvent):void
RPCEvent fault handler. This dispatchers a fault event and invokes the fault function of the responders in the RPC token
Parameters
protected function onRemoveResponder(event:Event):void
Parameters
protected function onResult(evt:RPCEvent):void
RPCEvent result handler. This dispatches a result event and invokes the result function of the responders in the RPC token
Parameters
protected function send():void
public static const LAST:String = "last"
public static const MULTIPLE:String = "multiple"
public static const SINGLE:String = "single"