queueMicrotask(callback)
添加于:v11.0.0
参数
callback
<Function> 要排队的函数。
queueMicrotask()
方法将要调用的微任务排队callback
.如果callback
抛出异常,process
对象 'uncaughtException'
将发出事件。
微任务队列由 V8 管理,使用方式与
队列类似,后者由 Node.js 管理。 process.nextTick()
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);
};
相关用法
- Node.js querystring.unescape()用法及代码示例
- Node.js querystring.parse()用法及代码示例
- Node.js querystring.decode()用法及代码示例
- Node.js querystring.stringify(obj[, sep[, eq[, options]]])用法及代码示例
- Node.js querystring.encode()用法及代码示例
- Node.js querystring.escape()用法及代码示例
- Node.js querystring.parse(str[, sep[, eq[, options]]])用法及代码示例
- Node.js querystring.stringify()用法及代码示例
- Node.js ServerHttp2Stream http2stream.pushStream(headers[, options], callback)用法及代码示例
- Node.js http2.Http2ServerRequest request.url用法及代码示例
- Node.js request.socket用法及代码示例
- Node.js assert.notEqual(actual, expected[, message])用法及代码示例
- Node.js tlsSocket.authorized用法及代码示例
- Node.js zlib.deflateRaw()用法及代码示例
- Node.js http.IncomingMessage message.rawHeaders用法及代码示例
- Node.js Console用法及代码示例
- Node.js GM transparent()用法及代码示例
- Node.js URL.protocol用法及代码示例
- Node.js http.Agent.reuseSocket(socket, request)用法及代码示例
- Node.js fs.filehandle.datasync()用法及代码示例
- Node.js socket.bind()用法及代码示例
- Node.js v8.getHeapSpaceStatistics()用法及代码示例
- Node.js http2session.destroyed用法及代码示例
- Node.js http.ServerResponse response.statusCode用法及代码示例
- Node.js Buffer buf.writeBigUInt64BE(value[, offset])用法及代码示例
注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 queueMicrotask(callback)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。