Revision 9de5d13958d63a28d1a07c605a2f116a58cff46e authored by Honza Bambas on 16 February 2016, 08:34:00 UTC, committed by Honza Bambas on 16 February 2016, 08:34:00 UTC
--HG--
extra : commitid : DK7thbJzLf8
extra : source : 651afdf7400c87cc7a2106f7b96570192d085d1d
1 parent 8d3dd1d
Raw File
nsIStreamListener.idl
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* 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/. */

#include "nsIRequestObserver.idl"

interface nsIInputStream;

/**
 * nsIStreamListener
 */
[scriptable, uuid(3b4c8a77-76ba-4610-b316-678c73a3b88c)]
interface nsIStreamListener : nsIRequestObserver
{
    /**
     * Called when the next chunk of data (corresponding to the request) may
     * be read without blocking the calling thread.  The onDataAvailable impl
     * must read exactly |aCount| bytes of data before returning.
     *
     * @param aRequest request corresponding to the source of the data
     * @param aContext user defined context
     * @param aInputStream input stream containing the data chunk
     * @param aOffset
     *        Number of bytes that were sent in previous onDataAvailable calls
     *        for this request. In other words, the sum of all previous count
     *        parameters.
     * @param aCount number of bytes available in the stream
     *
     * NOTE: The aInputStream parameter must implement readSegments.
     *
     * An exception thrown from onDataAvailable has the side-effect of
     * causing the request to be canceled.
     */
    void onDataAvailable(in nsIRequest aRequest,
                         in nsISupports aContext, 
                         in nsIInputStream aInputStream,
                         in unsigned long long aOffset,
                         in unsigned long aCount);
};
back to top