/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* 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/. */
/** * This class allows you to prefix an existing nsIAsyncInputStream * with a preloaded block of data known at construction time by wrapping the * two data sources into a new nsIAsyncInputStream. Readers of the new * stream initially see the preloaded data and when that has been exhausted * they automatically read from the wrapped stream. * * It is used by nsHttpConnection when it has over buffered while reading from * the HTTP input socket and accidentally consumed data that belongs to * a different protocol via the HTTP Upgrade mechanism. That over-buffered * data is preloaded together with the input socket to form the new input socket * given to the new protocol handler.
*/
class nsPreloadedStream final : public nsIAsyncInputStream, public nsIInputStreamCallback { public:
NS_DECL_THREADSAFE_ISUPPORTS
NS_DECL_NSIINPUTSTREAM
NS_DECL_NSIASYNCINPUTSTREAM
NS_DECL_NSIINPUTSTREAMCALLBACK
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.