An open API service indexing awesome lists of open source software.

https://github.com/zefer/jobqueue

A JavaScript utility for queuing-up and running jobs, useful for background tasks
https://github.com/zefer/jobqueue

Last synced: about 1 year ago
JSON representation

A JavaScript utility for queuing-up and running jobs, useful for background tasks

Awesome Lists containing this project

README

          

JobQueue
--------

This is a simple way to run a batch of background tasks, in JavaScript. The concept is basically:

1. Create an instance of the JobQueue class
2. Create lots of instances of the Job class, and add them to the JobQueue
3. Run the JobQueue

Could be used to:
- preload images, AJAX, or other http requests
- run a sequence of AJAX requests (e.g. for gathering lots of data)