Пакет | com.adobe.mosaic.om.events |
Класс | public class Message |
Наследование | Message Event Object |
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Версии среды выполнения: | 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.
Свойство | Определено | ||
---|---|---|---|
bubbles : Boolean [только для чтения]
Определяет, является ли событие событием восходящей цепочки. | Event | ||
cancelable : Boolean [только для чтения]
Указывает, можно ли предотвратить поведение, связанное с событием. | Event | ||
constructor : Object
Ссылка на объект класса или функцию конструктора для данного экземпляра объекта. | Object | ||
currentTarget : Object [только для чтения]
Объект, активно обрабатывающий объект Event с помощью прослушивателя событий. | Event | ||
eventPhase : uint [только для чтения]
Текущая фаза в потоке событий. | Event | ||
name : String [только для чтения]
Returns the name of this message. | Message | ||
nameSpace : String [только для чтения]
Returns the namespace of this message. | Message | ||
payload : * [только для чтения]
Returns the payload of this message. | Message | ||
target : Object [только для чтения]
Целевой объект события. | Event | ||
type : String [только для чтения]
Тип события. | Event |
Метод | Определено | ||
---|---|---|---|
Constructor. | Message | ||
[переопределить]
Clones this Message instance. | Message | ||
Служебная функция для реализации метода toString() в пользовательских классах ActionScript 3.0 Event. | Event | ||
Показывает, определено ли заданное свойство для объекта. | Object | ||
Проверяет, выполнялся ли для события вызова метода preventDefault(). | Event | ||
Показывает, есть ли экземпляр класса Object в цепи прототипов объекта, заданного в качестве параметра. | Object | ||
Отменяет поведение по умолчанию для события, если такое поведение можно отменить. | Event | ||
Показывает наличие заданного свойства и его перечисляемость. | Object | ||
Задает доступность динамического свойства для операций цикла. | Object | ||
Отменяет обработку прослушивателей событий в текущем узле, а также во всех узлах, которые следуют в потоке событий за текущим узлом. | Event | ||
Отменяет обработку прослушивателей событий в узлах, которые следуют в потоке событий за текущим узлом. | Event | ||
Возвращает строковое представление этого объекта, отформатированного в соответствии со стандартами, принятыми для данной локали. | Object | ||
Возвращает строку, содержащую все свойства объекта Event. | Event | ||
Возвращает элементарное значение заданного объекта. | Object |
name | свойство |
nameSpace | свойство |
nameSpace:String
[только для чтения] Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Версии среды выполнения: | AIR 2.6, Flash Player 10.2 |
Returns the namespace of this message.
Реализация
public function get nameSpace():String
payload | свойство |
Message | () | Конструктор |
public function Message(ns:String, name:String, payload:*)
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Версии среды выполнения: | 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 | () | метод |
override public function clone():Event
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Версии среды выполнения: | 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, 11:34 AM Z