Socket
Book a DemoInstallSign in
Socket

tasked

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tasked

Background task state machines on top of CouchDB.

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

tasked -- Background task state machines on top of CouchDB.

Install

  npm install tasked

Or from source:

  git clone git://github.com/mikeal/tasked.git 
  cd tasked
  npm link

Usage

var tasked = require('tasked')
  , request = require('request')
  , t = tasked('http://me.iriscouch.com:5984/tasks')
  ;

t.on('mytype', function (task) {
  task.info // Whole doc
  request(task.info.url, task.promise('http-request', function (e, r) {
    if (r.statusCode === 200) {
      // do something
    }
  }))
})

To create a new task to be processed you must write a document in to this CouchDB with your own custom type and a state property that is set to "new".

request.post(http://me.iriscouch.com:5984/tasks, {json:
  { type: 'mytype',
  , state: 'new'
  , url: 'http://www.google.com'
  }
})

tasked will set the document's state to "processing" and emit an event for that type. While task promises are open it remain in that state. When all the promises are resolved (succeeded or failed) the document's state will be set to "complete" and a results and errors property will be set with an object of all the success and failures from the promises.

task.promise(name, [cb])

This method creates a promise of the given name. When complete an event will be emitted on the task of the given name. An option callback will be added a handler for that event.

You cannot give two promises the same name on the same task object.

A promise that is returned is a single function that matches the standard node convention of function (error, success) {} so it should be usable in any function that follows standard node.js patterns.

FAQs

Package last updated on 11 Mar 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts