패키지 | com.adobe.mosaic.om.interfaces |
인터페이스 | public interface IMessageBus |
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
런타임 버전: | AIR 2.6, Flash Player 10.2 |
IMessageBus
interface provides methods for handling inter-tile communication.
관련 API 요소
메서드 | 정의 주체 | ||
---|---|---|---|
Adds a listener for a namespace and name combination. | IMessageBus | ||
Removes a listener for a namespace and name combination. | IMessageBus | ||
Sends a message to all the tiles in a composite application. | IMessageBus |
addMessageListener | () | 메서드 |
public function addMessageListener(namespace:String, name:String, handler:Function):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
런타임 버전: | AIR 2.6, Flash Player 10.2 |
Adds a listener for a namespace and name combination.
After calling this method, the listener is called anytime a message that matches the namespace and name is sent by any other tile in the application.
매개 변수
namespace:String — The namespace of the message.
| |
name:String — The name of the message to listen for.
| |
handler:Function — A function that triggers once for each sendMessage that is called that matches the namespace and name. The function takes one parameter of type Message .
|
관련 API 요소
removeMessageListener | () | 메서드 |
public function removeMessageListener(namespace:String, name:String, handler:Function):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
런타임 버전: | AIR 2.6, Flash Player 10.2 |
Removes a listener for a namespace and name combination.
After calling this method, the listener is no longer called anytime a message that matches the namespace and name is sent by any other tile in the application.
매개 변수
namespace:String — The namespace of the message.
| |
name:String — The name of the message to no longer listen for.
| |
handler:Function — The function to no longer be called.
|
관련 API 요소
sendMessage | () | 메서드 |
public function sendMessage(message:Message):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
런타임 버전: | AIR 2.6, Flash Player 10.2 |
Sends a message to all the tiles in a composite application.
This is used to convey transitory information across all the tiles in the application. The messages are not kept or queued for later processing, they are only visible to tiles that are in the application at the time the message is sent.
매개 변수
message:Message — The message to send.
|
Tue Jun 12 2018, 03:17 PM Z