Bug 1837643 [wpt PR 40475] - [RemoveLegacy] GridTrackList::legacy_track_list_, a...
[gecko.git] / netwerk / base / nsIBufferedStreams.idl
blob46f011290083ccaaedd0b43ce77fa618065e7c55
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 #include "nsIInputStream.idl"
6 #include "nsIOutputStream.idl"
8 /**
9 * An input stream that reads ahead and keeps a buffer coming from another input
10 * stream so that fewer accesses to the underlying stream are necessary.
12 [scriptable, builtinclass, uuid(616f5b48-da09-11d3-8cda-0060b0fc14a3)]
13 interface nsIBufferedInputStream : nsIInputStream
15 /**
16 * @param fillFromStream - add buffering to this stream
17 * @param bufferSize - specifies the maximum buffer size
19 void init(in nsIInputStream fillFromStream,
20 in unsigned long bufferSize);
22 /**
23 * Get the wrapped data stream
25 readonly attribute nsIInputStream data;
28 /**
29 * An output stream that stores up data to write out to another output stream
30 * and does the entire write only when the buffer is full, so that fewer writes
31 * to the underlying output stream are necessary.
33 [scriptable, builtinclass, uuid(6476378a-da09-11d3-8cda-0060b0fc14a3)]
34 interface nsIBufferedOutputStream : nsIOutputStream
36 /**
37 * @param sinkToStream - add buffering to this stream
38 * @param bufferSize - specifies the maximum buffer size
40 void init(in nsIOutputStream sinkToStream,
41 in unsigned long bufferSize);
43 /**
44 * Get the wrapped data stream
46 readonly attribute nsIOutputStream data;