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 

ManagedRemoteServiceOperation  - AS3 ADEP Data Services

Paquetemx.data
Clasepublic class ManagedRemoteServiceOperation
HerenciaManagedRemoteServiceOperation Inheritance AbstractOperation Inheritance AbstractInvoker Inheritance EventDispatcher Inheritance Object

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

An Operation used specifically by RemoteObjects. An Operation is an individual method on a service. An Operation can be called either by invoking the function of the same name on the service or by accessing the Operation as a property on the service and calling the send() method.



Propiedades públicas
 PropiedadDefinido por
  argumentNames : Array
An ordered list of the names of the arguments to pass to a method invocation.
ManagedRemoteServiceOperation
 Inheritedarguments : Object
The arguments to pass to the Operation when it is invoked.
AbstractOperation
  concurrency : String
The concurrency for this Operation.
ManagedRemoteServiceOperation
 Inheritedconstructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada.
Object
 InheritedlastResult : Object
[solo lectura] The result of the last invocation.
AbstractInvoker
  makeObjectsBindable : Boolean
[override] When this value is true, anonymous objects returned are forced to bindable objects.
ManagedRemoteServiceOperation
 Inheritedname : String
The name of this Operation.
AbstractOperation
 InheritedoperationManager : Function
This property is set usually by framework code which wants to modify the behavior of a service invocation without modifying the way in which the service is called externally.
AbstractInvoker
  pageSize : int
Whether this operation should show the busy cursor while it is executing.
ManagedRemoteServiceOperation
 Inheritedproperties : Object
This is a hook primarily for framework developers to register additional user specified properties for your operation.
AbstractOperation
 InheritedresultElementType : Class
Like resultType, used to define the ActionScript class used by a given operation though this property only applies to operations which return a multi-valued result (e.g.
AbstractInvoker
 InheritedresultType : Class
Specifies an optional return type for the operation.
AbstractInvoker
 Inheritedservice : AbstractService
[solo lectura] Provides convenient access to the service on which the Operation is being invoked.
AbstractOperation
  showBusyCursor : Boolean
Whether this operation should show the busy cursor while it is executing.
ManagedRemoteServiceOperation
Métodos públicos
 MétodoDefinido por
  
ManagedRemoteServiceOperation(managedRemoteService:AbstractService = null, name:String = null)
Creates a new Operation.
ManagedRemoteServiceOperation
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un objeto de detector de eventos con un objeto EventDispatcher, de modo que el detector reciba la notificación de un evento.
EventDispatcher
  
[override] Cancels the last service invocation or an invokation with the specified ID.
ManagedRemoteServiceOperation
 Inherited
clearResult(fireBindingEvent:Boolean = true):void
Sets the result property of the invoker to null.
AbstractInvoker
 Inherited
Distribuye un evento en el flujo del evento.
EventDispatcher
 Inherited
Comprueba si el objeto EventDispatcher tiene detectores registrados para un tipo concreto de evento.
EventDispatcher
 Inherited
Indica si un objeto tiene definida una propiedad especificada.
Object
 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
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Elimina un detector del objeto EventDispatcher.
EventDispatcher
  
[override] Executes the method.
ManagedRemoteServiceOperation
 Inherited
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle.
Object
 Inherited
This hook is exposed to update the lastResult property.
AbstractInvoker
 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
 Inherited
Comprueba si hay registrado un detector de eventos con este objeto EventDispatcher o con cualquiera de sus ascendientes para el tipo de evento concreto.
EventDispatcher
Eventos
 Evento Resumen Definido por
 Inherited[evento broadcast] Se distribuye cuando Flash Player o AIR pasan a estar activos.EventDispatcher
 Inherited[evento broadcast] Se distribuye cuando Flash Player o de AIR pasan a estar inactivos.EventDispatcher
 InheritedDispatched when an Operation call fails.AbstractOperation
 InheritedDispatched when an Operation invocation successfully returns.AbstractOperation
Información sobre propiedades

argumentNames

propiedad
public var argumentNames:Array

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

An ordered list of the names of the arguments to pass to a method invocation. Since the arguments object is a hashmap with no guaranteed ordering, this array helps put everything together correctly. It will be set automatically by the MXML compiler, if necessary, when the Operation is used in tag form.

concurrency

propiedad 
concurrency:String

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

The concurrency for this Operation. If it has not been explicitly set the setting from the RemoteObject will be used.



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

makeObjectsBindable

propiedad 
makeObjectsBindable:Boolean[override]

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

When this value is true, anonymous objects returned are forced to bindable objects.



Implementación
    override public function get makeObjectsBindable():Boolean
    override public function set makeObjectsBindable(value:Boolean):void

pageSize

propiedad 
pageSize:int

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

Whether this operation should show the busy cursor while it is executing. If it has not been explicitly set the setting from the RemoteObject will be used.



Implementación
    public function get pageSize():int
    public function set pageSize(value:int):void

showBusyCursor

propiedad 
showBusyCursor:Boolean

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

Whether this operation should show the busy cursor while it is executing. If it has not been explicitly set the setting from the RemoteObject will be used.



Implementación
    public function get showBusyCursor():Boolean
    public function set showBusyCursor(value:Boolean):void
Información sobre constructores

ManagedRemoteServiceOperation

()Información sobre
public function ManagedRemoteServiceOperation(managedRemoteService:AbstractService = null, name:String = null)

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

Creates a new Operation. This is usually done directly automatically by the ManagedRemoteService when an unknown operation has been accessed. It is not recommended that a developer use this constructor directly.

Parámetros
managedRemoteService:AbstractService (default = null) — The ManagedRemoteService object defining the service.
 
name:String (default = null) — The name of the service.
Información sobre métodos

cancel

()método
override public function cancel(id:String = null):mx.rpc:AsyncToken

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

Cancels the last service invocation or an invokation with the specified ID. Even though the network operation may still continue, no result or fault event is dispatched.

Parámetros

id:String (default = null) — The messageId of the invocation to cancel. Optional. If omitted, the last service invocation is canceled.

Valor devuelto
mx.rpc:AsyncToken — The AsyncToken associated with the call that is cancelled or null if no call was cancelled.

send

()método 
override public function send(... args):mx.rpc:AsyncToken

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

Executes the method. Any arguments passed in are passed along as part of the method call. If there are no arguments passed, the arguments object is used as the source of parameters.

Parámetros

... args — Optional arguments passed in as part of the method call. If there are no arguments passed, the arguments object is used as the source of parameters.

Valor devuelto
mx.rpc:AsyncToken — AsyncToken object. The same object is available in the result and fault events from the token property.




[ 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.