| Package | com.exadel.flamingo.flex.components.flamingo |
| Class | public class CallSet |
| Inheritance | CallSet flash.events.EventDispatcher |
Default MXML Propertycalls
| Property | Defined by | ||
|---|---|---|---|
calls : ArrayArray of Call elements. | CallSet | ||
| destination : String
Specifies destination for RemoteObject
| CallSet | ||
| Method | Defined by | ||
|---|---|---|---|
|
CallSet(target:IEventDispatcher = null)
Constructor.
| CallSet | ||
|
Adds passed
Call to the end of the calls Array. | CallSet | ||
|
Adds passed
Call to the calls Array
at position specified by index parameter. | CallSet | ||
|
removeCallAt(index:Number):void
Removes
Call from calls Array
at position specified by index parameter. | CallSet | ||
|
send(... args):AsyncToken
Sends
CallSet to server. | CallSet | ||
| calls | property |
calls:Array [read-write]
Array of Call elements.
public function get calls():Array
public function set calls(value:Array):void
See also
| destination | property |
destination:String [read-write]Specifies destination for RemoteObject
Implementation public function get destination():String
public function set destination(value:String):void
| CallSet | () | constructor |
public function CallSet(target:IEventDispatcher = null)Constructor. Initializes component.
Parameterstarget:IEventDispatcher (default = null) |
| addCall | () | method |
public function addCall(value:Call):void
Adds passed Call to the end of the calls Array.
value:Call — Call to be added
|
See also
| addCallAt | () | method |
public function addCallAt(index:Number, value:Call):void
Adds passed Call to the calls Array
at position specified by index parameter.
index:Number — specifies position where Call should be added
|
|
value:Call — Call to be added
|
See also
| removeCallAt | () | method |
public function removeCallAt(index:Number):void
Removes Call from calls Array
at position specified by index parameter.
index:Number — specifies position at which Call should be removed
|
| send | () | method |
public function send(... args):AsyncToken
Sends CallSet to server. Arguments passed
in are passed along as arguments to Call elements in calls Array.
Each argument mast be in form of Array and number of arguments must match
number of Call elements in calls Array.
If there are no arguments passed, the arguments object of every Call
element is used as the source of parameters.
... args |
AsyncToken |
| fault | event |
| result | event |