nsIResumableChannel 编辑

netwerk/base/public/nsIResumableChannel.idlScriptable This interface is meant to be implemented by the channels that support resuming broken downloads (for example Necko's HTML and FTP channels). Inherits from: nsISupports Last changed in Gecko 1.8 (Firefox 1.5 / Thunderbird 1.5 / SeaMonkey 1.0)

Method overview

void asyncOpenAt(in nsIStreamListener listener, in nsISupports ctxt, in unsigned long startPos, in nsIResumableEntityID entityID); Obsolete since Gecko 1.8
void resumeAt(in unsigned long long startPos, in ACString entityID);

Attributes

AttributeTypeDescription
entityIDACStringThe entity id for this URI. Available after OnStartRequest. Read only.
Exceptions thrown
NS_ERROR_NOT_RESUMABLE
If this load is not resumable.

Methods

asyncOpenAt()

Obsolete since Gecko 1.8 (Firefox 1.5 / Thunderbird 1.5 / SeaMonkey 1.0)

Open this channel, and read starting at the specified offset.

The request given to the nsIStreamListener will be QIable to nsIResumableInfo.

void asyncOpenAt(
  in nsIStreamListener listener,
  in nsISupports ctxt,
  in unsigned long startPos,
  in nsIResumableEntityID entityID
);
Parameters
listener
As for asyncOpen.
ctxt
As for asyncOpen.
startPos
The starting offset, in bytes, to use to download.
entityID
Information about the file, to match before obtaining the file. Pass an empty string to use anything.

resumeAt()

Prepare this channel for resuming. The request will not start until asyncOpen or open is called. Calling resumeAt after open or asyncOpen has been called has undefined behaviour.

During OnStartRequest, this channel will have a status of NS_ERROR_NOT_RESUMABLE if the file cannot be resumed, for example because the server doesn't support this. This error may occur even if startPos is 0, so that the front end can warn the user.

Similarly, the status of this channel during OnStartRequest may be NS_ERROR_ENTITY_CHANGED, which indicates that the entity has changed, as indicated by a changed entityID.

In both of these cases, no OnDataAvailable will be called, and OnStopRequest will immediately follow with the same status code.

void resumeAt(
  in unsigned long long startPos,
  in ACString entityID
);
Parameters
startPos
The starting offset, in bytes, to use to download.
entityID
Information about the file, to match before obtaining the file. Pass an empty string to use anything.

See also

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

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

发布评论

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

词条统计

浏览:84 次

字数:4459

最后编辑:7年前

编辑次数:0 次

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