nsIMessageBroadcaster 编辑

IDL file: mozilla-central/source/dom/base/nsIMessageManager.idl

Inherits from: nsIMessageListenerManager

Message "broadcasters" don't have a single "other side" that they send messages to, but rather a set of subordinate message managers. For example, broadcasting a message through a window message manager will broadcast the message to all frame message managers within its window.

See Message Manager interfaces for more details on the distinction between message senders and message broadcasters.

Methods

void broadcastAsyncMessage([optional] in AString messageName,
                      [optional] in jsval obj,
                      [optional] in jsval objects);
nsIMessageListenerManager getChildAt(in unsigned long aIndex);

broadcastAsyncMessage()

Like sendAsyncMessage(), but also broadcasts this message to all "child" message managers of this message manager.

See nsIMessageListener::receiveMessage() for the format of the data delivered to listeners.

WARNING: broadcasting messages can be very expensive and leak sensitive data.  Use with extreme caution.

Throws NS_ERROR_NOT_INITIALIZED if the sender is not initialized.  For example, we will throw NS_ERROR_NOT_INITIALIZED if we try to send a message to a cross-process frame but the other process has not yet been set up.

Throws NS_ERROR_FAILURE when the message receiver cannot be found.  For example, we will throw NS_ERROR_FAILURE if we try to send a message to a cross-process frame whose process has crashed.

Parameters

NameTypeDescription
messageNameString

The name of the message. Optional.

This becomes the name property of the received message.

objObject.

The message payload.

A structured clone of this becomes the data property of the received message.

objectsObject.

An object each of whose properties is an object.

This becomes the objects property of the received message, with each original object replaced with a cross process object wrapper for it.

getChildAt()

Return a single subordinate message manager.

Parameters

NameTypeDescription
aIndexNumberThe index of the subordinate message manager to retrieve.

Returns

nsIMessageListenerManager: the message manager at the given index.

Attributes

childCount

Number: the number of subordinate message managers. Read only.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:103 次

字数:4888

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文