Package | mx.rpc.mxml |
Class | public final class Concurrency |
Inheritance | Concurrency ![]() |
multiple
.
Constant | Defined 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 |
LAST | Constant |
public static const LAST:String = "last"
Making a request cancels any existing request.
MULTIPLE | Constant |
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.
SINGLE | Constant |
public static const SINGLE:String = "single"
Only a single request at a time is allowed on the operation; multiple requests generate a fault.