패키지 | mx.rpc.mxml |
클래스 | public final class Concurrency |
상속 | Concurrency Object |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
multiple
.
상수 | 정의 주체 | ||
---|---|---|---|
LAST : String = "last" [정적]
Making a request causes the client to ignore a result or fault for any current outstanding request. | Concurrency | ||
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. | Concurrency | ||
SINGLE : String = "single" [정적]
Making only one request at a time is allowed on the method; additional requests made
while a request is outstanding are immediately faulted on the client and are not sent to the server. | Concurrency |
LAST | 상수 |
public static const LAST:String = "last"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Making a request causes the client to ignore a result or fault for any current outstanding request. Only the result or fault for the most recent request will be dispatched on the client. This may simplify event handling in the client application, but care should be taken to only use this mode when results or faults for requests may be safely ignored.
MULTIPLE | 상수 |
public static const MULTIPLE:String = "multiple"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Existing requests are not cancelled, and the developer is responsible for ensuring the consistency of returned data by carefully managing the event stream.
SINGLE | 상수 |
public static const SINGLE:String = "single"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Making only one request at a time is allowed on the method; additional requests made while a request is outstanding are immediately faulted on the client and are not sent to the server.
Tue Jun 12 2018, 03:17 PM Z