0.6.6 • Published 4 years ago

@warerebel/sbqueue v0.6.6

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
4 years ago

Build Status Coverage Status

sbqueue

A library that queues data in memory and pushes it to an amqp connection. Built on rhea library

Getting Started

const sbqueue = require("sbqueue");

const connectionOptions = {
  host: "localhost",
  port: 5672
}

myQueue = new sbqueue(connectionOptions,"queueName");
myQueue.connect();

// Now we can push items to myQueue whenever we like
// they will be pushed to our amqp link whenever sending credit is available

myQueue.push({body: "a message"});
myQueue.push({body: "a second message"});
0.6.6

4 years ago

0.6.5

4 years ago

0.6.3

5 years ago

0.6.2

5 years ago

0.6.1

5 years ago

0.6.0

5 years ago

0.4.0

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.0

5 years ago