A method for making async operations cancellable
$ component install ForbesLindesay/cancellation
NPM:
$ npm install cancellation
Returns a new CancellationTokenSource:
var tokenSource = require('cancellation');
var source = tokenSource();
callAsyncOperation(arg1, arg2, arg3, source.token);
setTimeout(function () {
source.cancel('Operation timed out');
}, 1000);
Returns an 'empty' CancellationToken (one that will never be cancelled).
var tokenSource = require('cancellation');
function asyncOperation(arg1, arg2, arg3, cancellationToken) {
cancellationToken = cancellationToken || tokenSource.empty;
//Continue with function knowing there is a cancellation token
}
Returns true if the token has been cancelled:
//In ES6
function asyncOperation(cancellationToken) {
return spawn(function* () {
while(!cancellationToken.isCancelled()) {
yield NextAsyncOp();
}
})
}
Throws the rejection reason if the token has been cancelled:
//In ES6
function asyncOperation(cancellationToken) {
return spawn(function* () {
while(true) {
cancellationToken.throwIfCancelled()
yield NextAsyncOp();
}
})
}
Calls cb when the cancellation token is cancelled (this is probably currently the most useful of these methods).
function get(url, cancellationToken) {
var def = defer();
var req = request(url, function (err, res) {
if (err) def.reject(err);
else def.resolve(res);
});
cancellationToken
.onCancelled(function (reason) {
def.reject(reason);
req.abort();
});
return def.promise;
}
MIT
cancellation's People
Forkers
rubythonodeRecommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
๐ Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
D3
Bring data to life with SVG, Canvas and HTML. ๐๐๐
-
Recommend Topics
-
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
web
Some thing interesting about web. New door for the world.
-
server
A server is a program made to process requests and deliver data to clients.
-
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google โค๏ธ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.