Skip to content

Commit

Permalink
Merge branch 'master' of github.com:OptimalBits/bull
Browse files Browse the repository at this point in the history
  • Loading branch information
manast committed Mar 30, 2017
2 parents 674fce5 + 1d32c9b commit d5646a0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -11,7 +11,7 @@ Bull Job Manager

<img src="https://image.freepik.com/free-icon/strong-bull-side-view_318-52710.jpg" width="200" />

The fastest, more reliable redis based queue for nodejs.
The fastest, most reliable redis based queue for nodejs.
Carefully written for rock solid stability and atomicity.


Expand All @@ -32,7 +32,7 @@ Are you developing bull sponsored by a company? Please, let us now!
Features:
---------

- Minimal CPU usage by poll free design.
- Minimal CPU usage by poll-free design.
- Robust design based on Redis.
- Delayed jobs.
- Retries.
Expand Down Expand Up @@ -323,8 +323,8 @@ var Queue = require('bull');
var sendQueue = Queue("Server B");
var receiveQueue = Queue("Server A");

receiveQueue.process(function(msg, done){
console.log("Received message", msg);
receiveQueue.process(function(job, done){
console.log("Received message", job.data.msg);
done();
});

Expand All @@ -338,8 +338,8 @@ var Queue = require('bull');
var sendQueue = Queue("Server A");
var receiveQueue = Queue("Server B");

receiveQueue.process(function(msg, done){
console.log("Received message", msg);
receiveQueue.process(function(job, done){
console.log("Received message", job.data.msg);
done();
});

Expand Down

0 comments on commit d5646a0

Please sign in to comment.