内容简介:Resolve or reject only last Promise.Useful if you want to "abort" already running async operations started with debounced input event.When calling the wrapper function multiple times, only the last returned
only-last-promise
Resolve or reject only last Promise.
Useful if you want to "abort" already running async operations started with debounced input event.
Install
npm install only-last-promise --save
Usage
When calling the wrapper function multiple times, only the last returned Promise
will resolve or reject and all other Promise
s will be aborted with DiscardSignal
error.
In the following example, fetch
requests for /buddy
and /allie
will be discarded (they will return undefined
), and only /becky
will be resolved with
Response
.
import onlyLastPromise, { DiscardSignal } from 'only-last-promise';
const wrapper = onlyLastPromise();
const wrappedFetch = async (url) => {
try {
return await wrapper(fetch(url));
} catch (error) {
if (!(error instanceof DiscardSignal)) {
throw error;
}
}
};
(async () => {
await Promise.all([
wrappedFetch('/buddy'),
wrappedFetch('/allie'),
wrappedFetch('/becky')
]);
// => [undefined, undefined, Response]
})();
API
onlyLastPromise()
Returns: Function
Factory function which returns wrapper function.
wrapper(promise)
Type: Function
promise
Type: Promise
Promise
to handle.
Browser support
Tested in IE9+ and all modern browsers, assuming Promise
is available.
Test
For automated tests, run npm run test:automated
(append :watch
for watcher
support).
License
MIT © Ivan Nikolić
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
反应式设计模式
Roland Kuhn、Brian Hanafee、Jamie Allen / 何品、邱嘉和、王石冲、林炜翔审校 / 清华大学出版社 / 2019-1-1 / 98.00 元
《反应式设计模式》介绍反应式应用程序设计的原则、模式和经典实践,讲述如何用断路器模式将运行缓慢的组件与其他组件隔开、如何用事务序列(Saga)模式实现多阶段事务以及如何通过分片模式来划分数据集,分析如何保持源代码的可读性以及系统的可测试性(即使在存在许多潜在交互和失败点的情况下)。 主要内容 ? “反应式宣言”指南 ? 流量控制、有界一致性、容错等模式 ? 得之不易的关于“什么行不通”的经验 ? ......一起来看看 《反应式设计模式》 这本书的介绍吧!