UNPKG

tyo-mq

Version:

Distributed Message Pub/Sub Service with socket.io

16 lines (9 loc) 144 B
/** * */ function Queue() { this.queue = []; } Queue.prototype.push = function(message, from, to) { } module.exports = Queue;