[not part of the build] Added nsIStreamListenerTee for the new cache.

This commit is contained in:
darin%netscape.com 2001-03-07 12:53:39 +00:00
Родитель 235d4c9c4f
Коммит 95e4eaf8b4
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -119,3 +119,14 @@ interface nsIAsyncStreamListener : nsIStreamListener
void init(in nsIStreamListener receiver,
in nsIEventQueue eventQueue);
};
/**
* As data "flows" into a stream listener tee, it is copied to the output stream
* and then forwarded onto the real listener.
*/
[scriptable, uuid(fb683e76-d42b-41a4-8ae6-65a6c2b146e5)]
interface nsIStreamListenerTee : nsIStreamListener
{
void init(in nsIStreamListener listener,
in nsIOutputStream sink);
};