Skip to content

Commit

Permalink
Merge branch 'master' of github.com:LearnBoost/kue
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Aug 8, 2011
2 parents 14478e2 + b41983d commit ef62893
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Readme.md
@@ -1,4 +1,3 @@

# Kue

Kue is a priority job queue backed by [redis](http://redis.io), built for [node.js](http://nodejs.org).
Expand Down Expand Up @@ -92,8 +91,7 @@ job.progress(frames, totalFrames);

### Job Events

Job-specific events are fired are fire on the `Job` instances themselves
via Redis pubsub. The following events are currently supported:
Job-specific events are fired on the `Job` instances via Redis pubsub. The following events are currently supported:

- `failed` the job has failed
- `complete` the job has completed
Expand All @@ -120,7 +118,7 @@ job.on('complete', function(){

### Delayed Jobs

Delayed jobs may be scheduled to be queued for an arbitrary distance in tim by invoking the `.delay(ms)` method, passing the number of milliseconds relative to _now_. This automatically flags the `Job` as "delayed".
Delayed jobs may be scheduled to be queued for an arbitrary distance in time by invoking the `.delay(ms)` method, passing the number of milliseconds relative to _now_. This automatically flags the `Job` as "delayed".

```js
var email = jobs.create('email', {
Expand Down

0 comments on commit ef62893

Please sign in to comment.