Struct xpcom::interfaces::nsIStreamListener [] [src]

#[repr(C)]
pub struct nsIStreamListener { /* fields omitted */ }

interface nsIStreamListener : nsIRequestObserver

/**
 * nsIStreamListener
 */

Methods

impl nsIStreamListener
[src]

[src]

Cast this nsIStreamListener to one of its base interfaces.

impl nsIStreamListener
[src]

[src]

/**
     * 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);

Methods from Deref<Target = nsIRequestObserver>

[src]

Cast this nsIRequestObserver to one of its base interfaces.

[src]

/**
     * Called to signify the beginning of an asynchronous request.
     *
     * @param aRequest request being observed
     * @param aContext user defined context
     *
     * An exception thrown from onStartRequest has the side-effect of
     * causing the request to be canceled.
     */

void onStartRequest (in nsIRequest aRequest, in nsISupports aContext);

[src]

/**
     * Called to signify the end of an asynchronous request.  This
     * call is always preceded by a call to onStartRequest.
     *
     * @param aRequest request being observed
     * @param aContext user defined context
     * @param aStatusCode reason for stopping (NS_OK if completed successfully)
     *
     * An exception thrown from onStopRequest is generally ignored.
     */

void onStopRequest (in nsIRequest aRequest, in nsISupports aContext, in nsresult aStatusCode);

Trait Implementations

impl XpCom for nsIStreamListener
[src]

IID: nsIID = nsID(994871927, 30394, 17936, [179, 22, 103, 140, 115, 163, 184, 140])

[src]

Perform a QueryInterface call on this object, attempting to dynamically cast it to the requested interface type. Returns Some(RefPtr) if the cast succeeded, and None otherwise. Read more

impl RefCounted for nsIStreamListener
[src]

[src]

Increment the reference count.

[src]

Decrement the reference count, potentially freeing backing memory.

impl Deref for nsIStreamListener
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.