ActionScript® 3.0 — dokumentacja dla platformy Adobe® Flash®
Strona główna  |  Ukryj listę pakietów i klas |  Pakiety  |  Klasy  |  Nowości  |  Indeks  |  Dodatki  |  Dlaczego język angielski?
Filtry: Pobieranie danych z serwera...
Pobieranie danych z serwera...
mx.data 

ManagedOperation  - AS3 ADEP Data Services

Pakietmx.data
Klasapublic class ManagedOperation
DziedziczenieManagedOperation Inheritance Object
Podklasy ManagedQuery

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: 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.



Właściwości publiczne
 WłaściwośćZdefiniowane przez
 Inheritedconstructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu.
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
Metody publiczne
 MetodaZdefiniowane przez
  
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
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość.
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
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr.
Object
 Inherited
Wskazuje, czy określona właściwość istnieje i jest przeliczalna.
Object
 Inherited
Ustawia dostępność właściwości dynamicznej używanej w pętlach.
Object
 Inherited
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych.
Object
 Inherited
Zwraca ciąg reprezentujący określony obiekt.
Object
 Inherited
Zwraca pierwotną wartość dla określonego obiektu.
Object
Szczegół właściwości

convertResults

właściwość
public var convertResults:Boolean = true

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Turns on/off conversion of result element types.

Wartością domyślną jest true.

dataManager

właściwość 
dataManager:RPCDataManager

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

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



Implementacja
    public function get dataManager():RPCDataManager
    public function set dataManager(value:RPCDataManager):void

ignore

właściwość 
public var ignore:Boolean = false

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: 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.

Wartością domyślną jest false.

name

właściwość 
public var name:String

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

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

operation

właściwość 
public var operation:AbstractOperation

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

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

parameters

właściwość 
parameters:String

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

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



Implementacja
    public function get parameters():String
    public function set parameters(value:String):void

resultElementType

właściwość 
public var resultElementType:Class

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: 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

właściwość 
public var resultType:Class

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

The class of the return type for this operation.

type

właściwość 
public var type:String

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

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

Wartością domyślną jest "".

Konstruktor Szczegół

ManagedOperation

()Konstruktor
public function ManagedOperation(nameParam:String = null, typeParam:String = null)

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: 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.

Parametry
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'.
Szczegół metody

disableManagement

()metoda
public function disableManagement():void

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: 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

()metoda 
public function enableManagement():void

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

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

initialize

()metoda 
public function initialize():void

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

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

invokeService

()metoda 
public function invokeService(args:Array):mx.rpc:AsyncToken

Wersja języka: ActionScript 3.0
Wersja produktu: Adobe Digital Enterprise Platform Data Services for Java EE 3
Wersje środowiska wykonawczego: Flash Player 9, AIR 1.1

Invokes the operation on the real service without any management.

Parametry

args:Array — arguments for the invocation

Zwraca
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 ]Dlaczego język angielski?
Treść dokumentacji języka ActionScript 3.0 wyświetlana w języku angielskim

Niektóre części dokumentacji języka ActionScript 3.0 nie są przetłumaczone na poszczególne języki. Gdy element nie jest przetłumaczony na dany język, jest wyświetlany tekst angielski. Na przykład opis klasy ga.controls.HelpBox nie jest przetłumaczony na żaden dodatkowy język. Z tego powodu polska wersja dokumentacji zawiera opis klasy ga.controls.HelpBox w języku angielskim.