CountQueuingStrategy: CountQueuingStrategy() Konstruktor

Hinweis: Dieses Feature ist verfügbar in Web Workers.

Der CountQueuingStrategy() Konstruktor erstellt und gibt eine Instanz eines CountQueuingStrategy-Objekts zurück.

Syntax

js
new CountQueuingStrategy(options)

Parameter

options

Ein Objekt mit der folgenden Eigenschaft:

highWaterMark

Die Gesamtanzahl der Blöcke, die in der internen Warteschlange enthalten sein können, bevor Gegendruck angewendet wird.

Rückgabewert

Eine Instanz des CountQueuingStrategy-Objekts.

Ausnahmen

Keine.

Beispiele

js
const queuingStrategy = new CountQueuingStrategy({ highWaterMark: 1 });

const writableStream = new WritableStream(
  {
    // Implement the sink
    write(chunk) {
      // …
    },
    close() {
      // …
    },
    abort(err) {
      console.log("Sink error:", err);
    },
  },
  queuingStrategy,
);

const size = queuingStrategy.size();

Spezifikationen

Specification
Streams Standard
# ref-for-cqs-constructor①

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch