当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js queueMicrotask(callback)用法及代码示例


queueMicrotask(callback)

添加于:v11.0.0

参数

queueMicrotask()方法将要调用的微任务排队callback.如果callback抛出异常,process 对象 'uncaughtException'将发出事件。

微任务队列由 V8 管理,使用方式与 process.nextTick() 队列类似,后者由 Node.js 管理。 process.nextTick() 队列总是在 Node.js 事件循环的每一轮中的微任务队列之前处理。

// Here, `queueMicrotask()` is used to ensure the 'load' event is always
// emitted asynchronously, and therefore consistently. Using
// `process.nextTick()` here would result in the 'load' event always emitting
// before any other promise jobs.

DataHandler.prototype.load = async function load(key) {
  const hit = this._cache.get(key);
  if (hit !== undefined) {
    queueMicrotask(() => {
      this.emit('load', hit);
    });
    return;
  }

  const data = await fetchData(key);
  this._cache.set(key, data);
  this.emit('load', data);
};

相关用法


注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 queueMicrotask(callback)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。