nsIPushMessage 编辑

dom/interfaces/push/nsIPushNotifier.idlScriptable A push message sent to a system subscription. Inherits from: nsISupports Last changed in Gecko 46.0 (Firefox 46.0 / Thunderbird 46.0 / SeaMonkey 2.43)

nsIPushMessage is the subject of a push-message observer notification.

This interface resembles PushMessageData from the Push API.

Method overview

DOMString text();
jsval json();
void binary([optional] out uint32_t dataLen, [array, retval, size_is(dataLen)] out uint8_t data);

Methods

text()

Extracts the message data as a UTF-8 text string.

DOMString text();

Parameters

None.

json()

Parses the message data as JSON.

jsval json();

Parameters

None.

binary()

Extracts the message data as a byte array.

void binary(
  [optional] out uint32_t dataLen,
  [array, retval, size_is(dataLen)] out uint8_t data
);

Parameters

dataLen
The data size.
data
The byte array containing the data.

dataLen and data are out parameters. When called from JavaScript, nsIPushMessage.binary() returns data. Please see Method parameters in XPIDL for more details on using out parameters in JavaScript.

See also

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

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

发布评论

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

词条统计

浏览:113 次

字数:4476

最后编辑:7年前

编辑次数:0 次

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