2001-11-27 23:04:18 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2001-11-27 23:04:18 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
interface nsIChannel;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An interface to access the the base channel
|
|
|
|
* associated with a MultiPartChannel.
|
|
|
|
*/
|
|
|
|
|
2011-09-09 22:41:04 +00:00
|
|
|
[scriptable, uuid(4b04e835-d131-42af-8bf0-74289f99374f)]
|
2001-11-27 23:04:18 +00:00
|
|
|
interface nsIMultiPartChannel : nsISupports
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* readonly attribute to access the underlying channel
|
|
|
|
*/
|
|
|
|
readonly attribute nsIChannel baseChannel;
|
|
|
|
|
2005-01-15 17:47:23 +00:00
|
|
|
/**
|
|
|
|
* Attribute guaranteed to be different for different parts of
|
|
|
|
* the same multipart document.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
readonly attribute uint32_t partID;
|
2005-10-03 22:27:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set to true when onStopRequest is received from the base channel.
|
|
|
|
* The listener can check this from its onStopRequest to determine
|
|
|
|
* whether more data can be expected.
|
|
|
|
*/
|
|
|
|
readonly attribute boolean isLastPart;
|
2001-11-27 23:04:18 +00:00
|
|
|
};
|