run-parallel

WebJar for run-parallel

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

run-parallel
Последняя версия

Последняя версия

1.2.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

run-parallel
WebJar for run-parallel
Ссылка на сайт

Ссылка на сайт

https://www.webjars.org
Система контроля версий

Система контроля версий

https://github.com/feross/run-parallel

Скачать run-parallel

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/run-parallel/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>run-parallel</artifactId>
    <version>1.2.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/run-parallel/
implementation 'org.webjars.npm:run-parallel:1.2.0'
// https://jarcasting.com/artifacts/org.webjars.npm/run-parallel/
implementation ("org.webjars.npm:run-parallel:1.2.0")
'org.webjars.npm:run-parallel:jar:1.2.0'
<dependency org="org.webjars.npm" name="run-parallel" rev="1.2.0">
  <artifact name="run-parallel" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='run-parallel', version='1.2.0')
)
libraryDependencies += "org.webjars.npm" % "run-parallel" % "1.2.0"
[org.webjars.npm/run-parallel "1.2.0"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.webjars.npm : queue-microtask jar [1.2.2,2)

Модули Проекта

Данный проект не имеет модулей.

run-parallel ci npm downloads javascript style guide

Run an array of functions in parallel

parallel Sauce Test Status

install

npm install run-parallel

usage

parallel(tasks, [callback])

Run the tasks array of functions in parallel, without waiting until the previous function has completed. If any of the functions pass an error to its callback, the main callback is immediately called with the value of the error. Once the tasks have completed, the results are passed to the final callback as an array.

It is also possible to use an object instead of an array. Each property will be run as a function and the results will be passed to the final callback as an object instead of an array. This can be a more readable way of handling the results.

arguments
  • tasks - An array or object containing functions to run. Each function is passed a callback(err, result) which it must call on completion with an error err (which can be null) and an optional result value.
  • callback(err, results) - An optional callback to run once all the functions have completed. This function gets a results array (or object) containing all the result arguments passed to the task callbacks.
example
var parallel = require('run-parallel')

parallel([
  function (callback) {
    setTimeout(function () {
      callback(null, 'one')
    }, 200)
  },
  function (callback) {
    setTimeout(function () {
      callback(null, 'two')
    }, 100)
  }
],
// optional callback
function (err, results) {
  // the results array will equal ['one','two'] even though
  // the second function had a shorter timeout.
})

This module is basically equavalent to async.parallel, but it's handy to just have the one function you need instead of the kitchen sink. Modularity! Especially handy if you're serving to the browser and need to reduce your javascript bundle size.

Works great in the browser with browserify!

see also

license

MIT. Copyright (c) Feross Aboukhadijeh.

Версии библиотеки

Версия
1.2.0
1.1.9
1.1.7
1.1.6