Sha256: 4bd2fe1d8fcf65512ae949dd4dc89472ff35a2622f23a51f7bc7a862a902ba35

Contents?: true

Size: 691 Bytes

Versions: 26

Compression:

Stored size: 691 Bytes

Contents

'use strict'

const Farm = require('./farm')

let farms = [] // keep record of farms so we can end() them if required


function farm (options, path, methods) {
  if (typeof options == 'string') {
    methods = path
    path = options
    options = {}
  }

  let f   = new Farm(options, path)
    , api = f.setup(methods)

  farms.push({ farm: f, api: api })

  // return the public API
  return api
}


function end (api, callback) {
  for (let i = 0; i < farms.length; i++)
    if (farms[i] && farms[i].api === api)
      return farms[i].farm.end(callback)
  process.nextTick(callback.bind(null, new Error('Worker farm not found!')))
}


module.exports     = farm
module.exports.end = end

Version data entries

26 entries across 25 versions & 8 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/worker-farm/lib/index.js
disco_app-0.18.0 test/dummy/node_modules/worker-farm/lib/index.js
disco_app-0.18.2 test/dummy/node_modules/worker-farm/lib/index.js
disco_app-0.16.1 test/dummy/node_modules/worker-farm/lib/index.js
disco_app-0.15.2 test/dummy/node_modules/worker-farm/lib/index.js
disco_app-0.18.4 test/dummy/node_modules/worker-farm/lib/index.js
disco_app-0.18.1 test/dummy/node_modules/worker-farm/lib/index.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/worker-farm/lib/index.js
disco_app-0.14.0 test/dummy/node_modules/worker-farm/lib/index.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/worker-farm/lib/index.js
tang-0.2.1 spec/tang_app/node_modules/worker-farm/lib/index.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/worker-farm/lib/index.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/worker-farm/lib/index.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/worker-farm/lib/index.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/worker-farm/lib/index.js
tang-0.2.0 spec/tang_app/node_modules/worker-farm/lib/index.js
tang-0.1.0 spec/tang_app/node_modules/worker-farm/lib/index.js
tang-0.0.9 spec/tang_app/node_modules/worker-farm/lib/index.js
enju_library-0.3.8 spec/dummy/node_modules/worker-farm/lib/index.js
jester-data-8.0.0 node_modules/worker-farm/lib/index.js