Packagemx.rpc.mxml
Classpublic final class Concurrency
InheritanceConcurrency Inheritance Object

Concurrency is set via MXML based access to RPC services to indicate how to handle multiple calls to the same service. The default concurrency value is multiple.



Public Properties
 PropertyDefined By
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
Public Methods
 MethodDefined By
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Public Constants
 ConstantDefined By
  LAST : String = "last"
[static] Making a request cancels any existing request.
Concurrency
  MULTIPLE : String = "multiple"
[static] Existing requests are not cancelled, and the developer is responsible for ensuring the consistency of returned data by carefully managing the event stream.
Concurrency
  SINGLE : String = "single"
[static] Only a single request at a time is allowed on the operation; multiple requests generate a fault.
Concurrency
Constant Detail
LASTConstant
public static const LAST:String = "last"

Making a request cancels any existing request.

MULTIPLEConstant 
public static const MULTIPLE:String = "multiple"

Existing requests are not cancelled, and the developer is responsible for ensuring the consistency of returned data by carefully managing the event stream.

SINGLEConstant 
public static const SINGLE:String = "single"

Only a single request at a time is allowed on the operation; multiple requests generate a fault.