Pacchetto | com.adobe.fiber.services.wrapper |
Classe | public class AbstractServiceWrapper |
Ereditarietà | AbstractServiceWrapper EventDispatcher Object |
Implementa | IMXMLObject |
Sottoclassi | HTTPServiceWrapper, ManagedRemoteServiceWrapper, RemoteObjectServiceWrapper, WebServiceWrapper |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Proprietà | Definito da | ||
---|---|---|---|
channelSet : ChannelSet
Channel set of the wrapped service. | AbstractServiceWrapper | ||
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
destination : String
Destination of the wrapped service. | AbstractServiceWrapper | ||
operations : Object
Operations of the wrapped service. | AbstractServiceWrapper | ||
serviceControl : AbstractService [sola lettura]
The wrapped service. | AbstractServiceWrapper | ||
showBusyCursor : Boolean
The showBusyCursor property of the wrapped service. | AbstractServiceWrapper |
Metodo | Definito da | ||
---|---|---|---|
AbstractServiceWrapper(target:IEventDispatcher = null)
Constructor. | AbstractServiceWrapper | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un oggetto listener di eventi con un oggetto EventDispatcher, in modo che il listener riceva la notifica di un evento. | EventDispatcher | ||
Invia un evento nel flusso di eventi. | EventDispatcher | ||
Verifica se per l'oggetto EventDispatcher sono presenti listener registrati per un tipo specifico di evento. | EventDispatcher | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Called after the implementing object has been created and all
component properties specified on the MXML tag have been initialized. | AbstractServiceWrapper | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Rimuove un listener dall'oggetto EventDispatcher. | EventDispatcher | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object | ||
Verifica se un listener di eventi è registrato con questo oggetto EventDispatcher o qualsiasi suo antenato per il tipo di evento specificato. | EventDispatcher |
Evento | Riepilogo | Definito da | ||
---|---|---|---|---|
[evento di trasmissione] Inviato quando Flash Player o l'applicazione AIR ottiene lo stato di attivazione del sistema operativo ed entra nello stato attivo. | EventDispatcher | |||
[evento di trasmissione] Inviato quando Flash Player o l'applicazione AIR perde l'attivazione del sistema operativo e sta entrando nello stato inattivo. | EventDispatcher | |||
Fault events of wrapped services are propagated by the wrapper. | AbstractServiceWrapper | |||
Result events of wrapped services are propagated by the wrapper. | AbstractServiceWrapper |
channelSet | proprietà |
channelSet:ChannelSet
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Channel set of the wrapped service.
Implementazione
public function get channelSet():ChannelSet
public function set channelSet(value:ChannelSet):void
Elementi API correlati
destination | proprietà |
destination:String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Destination of the wrapped service.
Implementazione
public function get destination():String
public function set destination(value:String):void
Elementi API correlati
operations | proprietà |
operations:Object
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Operations of the wrapped service.
Implementazione
public function get operations():Object
public function set operations(value:Object):void
Elementi API correlati
serviceControl | proprietà |
serviceControl:AbstractService
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The wrapped service. The service is implemented by service-specific subclasses.
Implementazione
public function get serviceControl():AbstractService
showBusyCursor | proprietà |
showBusyCursor:Boolean
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The showBusyCursor
property of the wrapped service.
Implementazione
public function get showBusyCursor():Boolean
public function set showBusyCursor(value:Boolean):void
AbstractServiceWrapper | () | Funzione di costruzione |
public function AbstractServiceWrapper(target:IEventDispatcher = null)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Constructor.
Parametritarget:IEventDispatcher (default = null ) — The target object for dispatched events.
|
initialized | () | metodo |
public function initialized(document:Object, id:String):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Called after the implementing object has been created and all component properties specified on the MXML tag have been initialized.
Parametri
document:Object — The MXML document that created this object.
| |
id:String — The identifier used by document to refer
to this object.
If the object is a deep property on document ,
id is null.
|
fault | Evento |
mx.rpc.events.FaultEvent
proprietà FaultEvent.type =
mx.rpc.events.FaultEvent.FAULT
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Fault events of wrapped services are propagated by the wrapper.
The FAULT event type.The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | true, calling preventDefault() from the associated token's responder.fault method will prevent the service or operation from dispatching this event |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
fault | The Fault object that contains the details of what caused this event. |
message | The Message associated with this event. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
token | The token that represents the call to the method. Used in the asynchronous completion token pattern. |
result | Evento |
mx.rpc.events.ResultEvent
proprietà ResultEvent.type =
mx.rpc.events.ResultEvent.RESULT
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Result events of wrapped services are propagated by the wrapper.
The RESULT event type.The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | true, preventDefault() from the associated token's responder.result method will prevent the service or operation from dispatching this event |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
message | The Message associated with this event. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
result | Result that the RPC call returns. |
token | The token that represents the indiviudal call to the method. Used in the asynchronous completion token pattern. |
Tue Jun 12 2018, 02:44 PM Z