Referencia de ActionScript® 3.0 para la plataforma de Adobe® Flash®
Inicio  |  Ocultar lista de paquetes y clases |  Paquetes  |  Clases  |  Novedades  |  Índice  |  Apéndices  |  ¿Por qué hay texto en inglés?
Filtros: Recuperando datos del servidor...
Recuperando datos del servidor...
mx.data 

ManagedOperation  - AS3 ADEP Data Services

Paquetemx.data
Clasepublic class ManagedOperation
HerenciaManagedOperation Inheritance Object
Subclases ManagedQuery

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

The ManagedOperation class is used to represent a managed service operation for an RPC service that uses client-side data management.



Propiedades públicas
 PropiedadDefinido por
 Inheritedconstructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada.
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
Métodos públicos
 MétodoDefinido por
  
ManagedOperation(nameParam:String = null, typeParam:String = null)
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
 Inherited
Indica si un objeto tiene definida una propiedad especificada.
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
 Inherited
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro.
Object
 Inherited
Indica si existe la propiedad especificada y si es enumerable.
Object
 Inherited
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle.
Object
 Inherited
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional.
Object
 Inherited
Devuelve la representación de cadena del objeto especificado.
Object
 Inherited
Devuelve el valor simple del objeto especificado.
Object
Información sobre propiedades

convertResults

propiedad
public var convertResults:Boolean = true

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Turns on/off conversion of result element types.

El valor predeterminado es true.

dataManager

propiedad 
dataManager:RPCDataManager

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Each ManagedOperation should be a child of an RPCDataManager tag. This property stores a reference to the parent.



Implementación
    public function get dataManager():RPCDataManager
    public function set dataManager(value:RPCDataManager):void

ignore

propiedad 
public var ignore:Boolean = false

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: 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.

El valor predeterminado es false.

name

propiedad 
public var name:String

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Name of the operation in the service which this is managing.

operation

propiedad 
public var operation:AbstractOperation

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Stores the service's operation which we are using for this managed operation.

parameters

propiedad 
parameters:String

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

A usually optional metadata value which stores the comma separated list of parameter names for this operation.



Implementación
    public function get parameters():String
    public function set parameters(value:String):void

resultElementType

propiedad 
public var resultElementType:Class

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: 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

propiedad 
public var resultType:Class

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

The class of the return type for this operation.

type

propiedad 
public var type:String

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Represents the type of the managed operation. Values are: 'create', 'update', 'delete', 'get', 'query', and 'findItem'.

El valor predeterminado es "".

Información sobre constructores

ManagedOperation

()Información sobre
public function ManagedOperation(nameParam:String = null, typeParam:String = null)

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: 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.

Parámetros
nameParam: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'.
Información sobre métodos

disableManagement

()método
public function disableManagement():void

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: 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

()método 
public function enableManagement():void

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Enables data management for this operation if it has been disabled previously.

initialize

()método 
public function initialize():void

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Initializes the managed operation throwing errors for any configuration problems that are encountered along the way.

invokeService

()método 
public function invokeService(args:Array):mx.rpc:AsyncToken

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Data Services for Java EE 3
Versiones de motor de ejecución: Flash Player 9, AIR 1.1

Invokes the operation on the real service without any management.

Parámetros

args:Array — arguments for the invocation

Valor devuelto
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.




[ X ]¿Por qué hay texto en inglés?
Cierto contenido de la Referencia de ActionScript 3.0 se muestra en inglés

No todo el contenido de la Referencia de ActionScript 3.0 se traduce a todos los idiomas. Si un elemento del lenguaje no se traduce, aparecerá en inglés. Por ejemplo, la clase ga.controls.HelpBox no está traducida en ningún idioma. Por lo tanto, en la versión en español de la referencia, la clase ga.controls.HelpBox aparecerá en inglés.