nsIWebSocketChannel 编辑

nsIWebSocketChannel

netwerk/protocol/websocket/nsIWebSocketChannel.idlScriptable Provides support for WebSocket channels. 1.0 66 Introduced Gecko 8.0 Inherits from: nsISupports Last changed in Gecko 8.0 (Firefox 8.0 / Thunderbird 8.0 / SeaMonkey 2.5)

Implemented by: ?????????????????????????????????????. To create an instance, use:

var webSocketChannel = Components.classes["@mozilla.org/????????????????????????????"]
                       .createInstance(Components.interfaces.nsIWebSocketChannel);

Method overview

void asyncOpen(in nsIURI aURI, in ACString aOrigin, in nsIWebSocketListener aListener, in nsISupports aContext);
void close(in unsigned short aCode, in AUTF8String aReason);
void sendBinaryMsg(in ACString aMsg);
void sendMsg(in AUTF8String aMsg);

Attributes

AttributeTypeDescription
extensionsACStringSec-Websocket-Extensions response header value. Read only.
loadGroupnsILoadGroupThe load group of the WebSockets code.
notificationCallbacksnsIInterfaceRequestorThe notification callbacks for authorization and so forth.
originalURInsIURIThe original URI used to construct the protocol connection. This is used in the case of a redirect or URI "resolution" (for example resolving a resource: URI to a file: URI) so that the original pre-redirect URI can still be obtained. This is never null. Read only.
protocolACStringSec-Websocket-Protocol value.
securityInfonsISupportsTransport-level security information (if any). Read only.
URInsIURIThe URI corresponding to the protocol connection after any redirections are completed. Read only.

Status codes

The following values are permitted status codes.

Status codeNameDescription
0-999 Reserved and not used.
1000CLOSE_NORMALNormal closure; the connection successfully completed whatever purpose for which it was created.
1001CLOSE_GOING_AWAYThe endpoint is going away, either because of a server failure or because the browser is navigating away from the page that opened the connection.
1002CLOSE_PROTOCOL_ERRORThe endpoint is terminating the connection due to a protocol error.
1003CLOSE_UNSUPPORTEDThe connection is being terminated because the endpoint received data of a type it cannot accept (for example, a text-only endpoint received binary data).
1004CLOSE_TOO_LARGEThe endpoint is terminating the connection because a data frame was received that is too large.
1005CLOSE_NO_STATUSReserved.  Indicates that no status code was provided even though one was expected.
1006CLOSE_ABNORMALReserved. Used to indicate that a connection was closed abnormally (that is, with no close frame being sent) when a status code is expected.
1007-1999 Reserved for future use by the WebSocket standard.
2000-2999 Reserved for use by WebSocket extensions.
3000-3999 Available for use by libraries and frameworks. May not be used by applications.
4000-4999 Available for use by applications.

Methods

asyncOpen()

Asynchronously opens the WebSocket connection. Received messages are fed to the socket listener as they arrive. The socket listener's methods are called on the thread that calls asyncOpen() and are not called until after asyncOpen() returns. If asyncOpen() returns successfully, the protocol implementation promises to call at least onStart and onStop of the listener.

Note: Implementations should throw NS_ERROR_ALREADY_OPENED if the WebSocket connection is reopened.
void asyncOpen(
  in nsIURI aURI,
  in ACString aOrigin,
  in nsIWebSocketListener aListener,
  in nsISupports aContext
);
Parameters
aURI
The uri of the websocket protocol; this may be redirected.
aOrigin
The URI of the originating resource.
aListener
The nsIWebSocketListener implementation.
aContext
An opaque parameter forwarded to aListener's methods.

close()

void close(
  in unsigned short aCode,
  in AUTF8String aReason
);
Parameters
aCode
The status of the connection when closed; see Status codes for possible values.
aReason
A human-readable string describing the reason the connection closed.

sendBinaryMsg()

Sends a binary message to the WebSocket peer.

void sendBinaryMsg(
  in ACString aMsg
);
Parameters
aMsg
The data to send.

sendMsg()

Sends a text message to the WebSocket peer.

void sendMsg(
  in AUTF8String aMsg
);
Parameters
aMsg
The UTF-8 string to send.

See also

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

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

发布评论

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

词条统计

浏览:87 次

字数:9358

最后编辑:8年前

编辑次数:0 次

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