Paket | mx.data |
Klass | public class ManagedOperation |
Arv | ManagedOperation Object |
Underklasser | ManagedQuery |
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Egenskap | Definieras med | ||
---|---|---|---|
constructor : Object
En referens till klassobjektet eller konstruktorfunktionen för en given objektinstans. | Object | ||
convertResults : Boolean = true
Turns on/off conversion of result element types. | ManagedOperation | ||
dataManager : RPCDataManager
Each ManagedOperation should be a child of an RPCDataManager tag. | ManagedOperation | ||
ignore : Boolean = false
It may be useful in some cases to ignore a particular managed operation. | ManagedOperation | ||
name : String Name of the operation in the service which this is managing. | ManagedOperation | ||
operation : AbstractOperation Stores the service's operation which we are using for this managed operation. | ManagedOperation | ||
parameters : String
A usually optional metadata value which stores the comma separated list of parameter names
for this operation. | ManagedOperation | ||
resultElementType : Class
For operations which return a multi-valued response, this specifies the type of the
elements of the Array or ArrayCollection. | ManagedOperation | ||
resultType : Class
The class of the return type for this operation. | ManagedOperation | ||
type : String
Represents the type of the managed operation. | ManagedOperation |
Metod | Definieras med | ||
---|---|---|---|
Creates a ManagedOperation object. | ManagedOperation | ||
Disables data management for this operation. | ManagedOperation | ||
Enables data management for this operation if it has been disabled previously. | ManagedOperation | ||
Anger om det finns en egenskap angiven för ett objekt. | Object | ||
Initializes the managed operation throwing errors for any configuration problems that are
encountered along the way. | ManagedOperation | ||
Invokes the operation on the real service without any management. | ManagedOperation | ||
Anger om en instans av klassen Object finns i prototypkedjan för objektet som anges som parameter. | Object | ||
Anger om den angivna egenskapen finns och är uppräkningsbar. | Object | ||
Anger tillgänglighet för en dynamisk egenskap för slingåtgärder. | Object | ||
Returnerar det här objektets strängrepresentation, formaterad i enlighet med språkspecifika konventioner. | Object | ||
Returnerar det angivna objektets strängbeteckning. | Object | ||
Returnerar det angivna objektets primitiva värde. | Object |
convertResults | egenskap |
public var convertResults:Boolean = true
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Turns on/off conversion of result element types.
Standardvärdet är true.
dataManager | egenskap |
dataManager:RPCDataManager
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Each ManagedOperation should be a child of an RPCDataManager tag. This property stores a reference to the parent.
Implementering
public function get dataManager():RPCDataManager
public function set dataManager(value:RPCDataManager):void
ignore | egenskap |
public var ignore:Boolean = false
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
It may be useful in some cases to ignore a particular managed operation. If so,
you can set this property to true
.
Standardvärdet är false.
name | egenskap |
public var name:String
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Name of the operation in the service which this is managing.
operation | egenskap |
public var operation:AbstractOperation
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Stores the service's operation which we are using for this managed operation.
parameters | egenskap |
parameters:String
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
A usually optional metadata value which stores the comma separated list of parameter names for this operation.
Implementering
public function get parameters():String
public function set parameters(value:String):void
resultElementType | egenskap |
public var resultElementType:Class
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
For operations which return a multi-valued response, this specifies the type of the elements of the Array or ArrayCollection.
resultType | egenskap |
public var resultType:Class
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
The class of the return type for this operation.
type | egenskap |
public var type:String
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Represents the type of the managed operation.
Values are: 'create'
, 'update'
,
'delete'
, 'get'
, 'query'
, and 'findItem'
.
Standardvärdet är "".
ManagedOperation | () | Konstruktor |
public function ManagedOperation(nameParam:String = null, typeParam:String = null)
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Creates a ManagedOperation object. Both name and type are required parameters though they are optional here so this class can be used as an MXML tag.
ParametrarnameParam:String (default = null ) — Name of the operation in the service which this is managing.
| |
typeParam:String (default = null ) — The type of the managed operation. Values are: 'create', 'update',
'delete', 'get', 'query', or 'findItem'.
|
disableManagement | () | metod |
public function disableManagement():void
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Disables data management for this operation. When management is disabled, the operation is executed as it would be if it were unmanaged.
enableManagement | () | metod |
public function enableManagement():void
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Enables data management for this operation if it has been disabled previously.
initialize | () | metod |
public function initialize():void
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Initializes the managed operation throwing errors for any configuration problems that are encountered along the way.
invokeService | () | metod |
public function invokeService(args:Array):mx.rpc:AsyncToken
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Invokes the operation on the real service without any management.
Parametrar
args:Array — arguments for the invocation
|
mx.rpc:AsyncToken — AsyncToken token that may be used to register one or more callback
functions to receive result or fault events from this invocation.
|
Tue Jun 12 2018, 01:40 PM Z