16 lines
379 B
JavaScript
16 lines
379 B
JavaScript
'use strict';
|
|
|
|
var redis = require('redis');
|
|
|
|
function JobSubscriber() {
|
|
this.channel = 'host:job';
|
|
this.client = redis.createClient(global.settings.redis_port, global.settings.redis_host);
|
|
}
|
|
|
|
JobSubscriber.prototype.subscribe = function (onMessage) {
|
|
this.client.subscribe(this.channel);
|
|
this.client.on('message', onMessage);
|
|
};
|
|
|
|
module.exports = JobSubscriber;
|