Package | com.renaun.rpc |
Class | public class method |
Implements | mx.rpc.mxml.IMXMLSupport |
Property | Defined by | ||
---|---|---|---|
arguments : Array | method | ||
concurrency : String
Value that indicates how to handle multiple calls to the same service.
| method | ||
makeObjectsBindable : Boolean
When this value is true, anonymous objects
returned are forced to bindable objects.
| method | ||
name : String
Defines the method name that you want to call on the service class.
| method | ||
showBusyCursor : Boolean
If true, a busy cursor is displayed while a
service is executing.
| method |
Method | Defined by | ||
---|---|---|---|
method()
Constructor.
| method |
Event | Summary | Defined by | ||
---|---|---|---|---|
The fault event is dispatched when a service call fails and isn't handled by the Operation itself. | method | |||
The result event is dispatched when a service call successfully returns and isn't handled by the Operation itself. | method |
arguments | property |
arguments:Array
[read-write]This property can be used as the source for data binding.
Implementation public function get arguments():Array
public function set arguments(value:Array):void
concurrency | property |
concurrency:String
[read-write]Value that indicates how to handle multiple calls to the same service. The default value is multiple. The following values are permitted:
The default value is multiple
.
This property can be used as the source for data binding.
Implementation public function get concurrency():String
public function set concurrency(value:String):void
makeObjectsBindable | property |
makeObjectsBindable:Boolean
[read-write]When this value is true, anonymous objects returned are forced to bindable objects.
The default value is false
.
This property can be used as the source for data binding.
Implementation public function get makeObjectsBindable():Boolean
public function set makeObjectsBindable(value:Boolean):void
name | property |
name:String
[read-write]Defines the method name that you want to call on the service class.
The default value is empty string
.
This property can be used as the source for data binding.
Implementation public function get name():String
public function set name(value:String):void
showBusyCursor | property |
showBusyCursor:Boolean
[read-write]If true, a busy cursor is displayed while a service is executing. The default value is false.
The default value is false
.
This property can be used as the source for data binding.
Implementation public function get showBusyCursor():Boolean
public function set showBusyCursor(value:Boolean):void
method | () | constructor |
public function method()
Constructor.
fault | event |
mx.rpc.events.FaultEvent
The fault event is dispatched when a service call fails and isn't handled by the Operation itself.
The FAULT event type.
result | event |
mx.rpc.events.ResultEvent
The result event is dispatched when a service call successfully returns and isn't handled by the Operation itself.
The RESULT event type.