此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in English Always switch to English

CountQueuingStrategy.size()

基线 广泛可用

自 2019年1月 起,此特性已在主流浏览器中得到支持,可在大多数设备和浏览器版本中正常使用。

CountQueuingStrategy 接口的 size() 方法始终返回 1,因此队列的总大小是队列中所有分块的数量。

语法

js
size()

参数

无。

返回值

1

示例

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();

规范

规范
Streams
# ref-for-cqs-size②

浏览器兼容性

参见