2001-09-28 20:14:13 +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-03-02 06:10:00 +00:00
|
|
|
|
|
|
|
#include "nsIInputStream.idl"
|
|
|
|
|
|
|
|
interface nsIOutputStream;
|
2010-02-23 18:13:18 +00:00
|
|
|
interface nsIEventTarget;
|
2001-03-02 06:10:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A nsIInputStreamTee is a wrapper for an input stream, that when read
|
|
|
|
* reads the specified amount of data from its |source| and copies that
|
|
|
|
* data to its |sink|. |sink| must be a blocking output stream.
|
|
|
|
*/
|
2010-02-23 18:13:18 +00:00
|
|
|
[scriptable, uuid(90a9d790-3bca-421e-a73b-98f68e13c917)]
|
2001-03-02 06:10:00 +00:00
|
|
|
interface nsIInputStreamTee : nsIInputStream
|
|
|
|
{
|
2002-05-10 18:38:09 +00:00
|
|
|
attribute nsIInputStream source;
|
|
|
|
attribute nsIOutputStream sink;
|
2010-02-23 18:13:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If |eventTarget| is set, copying to sink is done asynchronously using
|
2013-01-03 23:30:48 +00:00
|
|
|
* the event-target (e.g. a thread). If |eventTarget| is not set, copying
|
|
|
|
* to sink happens synchronously while reading from the source.
|
2010-02-23 18:13:18 +00:00
|
|
|
*/
|
|
|
|
attribute nsIEventTarget eventTarget;
|
2001-03-02 06:10:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
%{C++
|
2010-02-23 18:13:18 +00:00
|
|
|
// factory methods
|
2011-08-18 13:46:39 +00:00
|
|
|
extern nsresult
|
2001-03-02 06:10:00 +00:00
|
|
|
NS_NewInputStreamTee(nsIInputStream **tee, // read from this input stream
|
|
|
|
nsIInputStream *source,
|
|
|
|
nsIOutputStream *sink);
|
2010-02-23 18:13:18 +00:00
|
|
|
|
2011-08-18 13:46:39 +00:00
|
|
|
extern nsresult
|
2010-02-23 18:13:18 +00:00
|
|
|
NS_NewInputStreamTeeAsync(nsIInputStream **tee, // read from this input stream
|
|
|
|
nsIInputStream *source,
|
|
|
|
nsIOutputStream *sink,
|
|
|
|
nsIEventTarget *eventTarget);
|
2001-03-02 06:10:00 +00:00
|
|
|
%}
|