Pacchetto | com.adobe.mosaic.om.events |
Classe | public class Message |
Ereditarietà | Message Event Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Message
class defines a transient notification including a namespace, a name, and a valid payload.
Messages are not retained or stored after all their listeners have been processed, so messages should only be used for communicating information that never needs to be persisted or recalled.
Proprietà | Definito da | ||
---|---|---|---|
bubbles : Boolean [sola lettura]
Indica se un evento è un evento di bubbling. | Event | ||
cancelable : Boolean [sola lettura]
Indica se il comportamento associato all'evento può essere impedito. | Event | ||
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
currentTarget : Object [sola lettura]
L'oggetto che elabora attivamente l'oggetto Event con un listener di eventi. | Event | ||
eventPhase : uint [sola lettura]
La fase attuale del flusso di eventi. | Event | ||
name : String [sola lettura]
Returns the name of this message. | Message | ||
nameSpace : String [sola lettura]
Returns the namespace of this message. | Message | ||
payload : * [sola lettura]
Returns the payload of this message. | Message | ||
target : Object [sola lettura]
Il target dell'evento. | Event | ||
type : String [sola lettura]
Il tipo di evento. | Event |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | Message | ||
[override]
Clones this Message instance. | Message | ||
Una funzione dell'utilità per l'implementazione del metodo toString() in classi Event ActionScript 3.0 personalizzate. | Event | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Verifica se sull'evento è stato chiamato il metodo preventDefault(). | Event | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Annulla il comportamento predefinito di un evento se tale comportamento può essere annullato. | Event | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Impedisce l'elaborazione di tutti i listener di eventi nel nodo corrente e in tutti i nodi successivi del flusso di eventi. | Event | ||
Impedisce l'elaborazione di tutti i listener di eventi nei nodi del flusso di eventi successivi a quello corrente. | Event | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce una stringa che contiene tutte le proprietà dell'oggetto Event. | Event | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
name | proprietà |
name:String
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Returns the name of this message.
Implementazione
public function get name():String
nameSpace | proprietà |
nameSpace:String
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Returns the namespace of this message.
Implementazione
public function get nameSpace():String
payload | proprietà |
payload:*
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Returns the payload of this message.
Implementazione
public function get payload():*
Message | () | Funzione di costruzione |
public function Message(ns:String, name:String, payload:*)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Constructor.
The constructor builds a Message
object containing a namespace, name, and payload
to deliver to other tiles using their event listeners.
ns:String — The namespace of the message.
| |
name:String — The name of the message.
| |
payload:* — Any object that is allowed to be serialized. The object will be sent to every listener.
|
clone | () | metodo |
override public function clone():Event
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Clones this Message instance. Duplicates an instance of an Event subclass.
Returns a new Event object that is a copy of the original instance of the Event object.
You do not normally call clone()
; the EventDispatcher class calls it automatically
when you redispatch an event—that is, when you call dispatchEvent(event)
from a handler
that is handling event
.
The new Event object includes all the properties of the original.
When creating your own custom Event class, you must override the
inherited Event.clone()
method in order for it to duplicate the
properties of your custom class. If you do not set all the properties that you add
in your event subclass, those properties will not have the correct values when listeners
handle the redispatched event.
In this example, PingEvent
is a subclass of Event
and therefore implements its own version of clone()
.
class PingEvent extends Event { var URL:String; public override function clone():Event { return new PingEvent(type, bubbles, cancelable, URL); } }
Event — cloned Message
|
Tue Jun 12 2018, 02:44 PM Z