/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* 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/. */
RefPtr<FetchStreamReader> mAsyncWaitReader; // WeakPtr to avoid cycles
WeakPtr<FetchStreamReader> mReader; // To ensure the worker sticks around
RefPtr<StrongWorkerRef> mAsyncWaitWorkerRef;
RefPtr<StrongWorkerRef> mWorkerRef;
nsCOMPtr<nsIAsyncOutputStream> mOutput;
};
class FetchStreamReader final : public nsISupports, public SupportsWeakPtr { public:
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
NS_DECL_CYCLE_COLLECTION_CLASS(FetchStreamReader)
// This creates a nsIInputStream able to retrieve data from the ReadableStream // object. The reading starts when StartConsuming() is called. static nsresult Create(JSContext* aCx, nsIGlobalObject* aGlobal,
FetchStreamReader** aStreamReader,
nsIInputStream** aInputStream);
// Idempotently close the output stream and null out all state. If aCx is // provided, the reader will also be canceled. aStatus must be a DOM error // as understood by DOMException because it will be provided as the // cancellation reason. // // This is a script boundary minimize annotation changes required while // we figure out how to handle some more tricky annotation cases (for // example, the destructor of this class. Tracking under Bug 1750656)
MOZ_CAN_RUN_SCRIPT_BOUNDARY void CloseAndRelease(JSContext* aCx, nsresult aStatus);
// Attempt to copy data from mBuffer into mPipeOut. Returns `true` if data was // written, and AsyncWait callbacks or FetchReadRequest calls have been set up // to write more data in the future, and `false` otherwise.
MOZ_CAN_RUN_SCRIPT bool Process(JSContext* aCx);
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.