You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
643 B
25 lines
643 B
'use strict';
|
|
|
|
var log = require('npmlog');
|
|
log.debug = log.verbose;
|
|
var inherits = require('inherits');
|
|
var events = require('events');
|
|
var nodeutil = require('util');
|
|
|
|
function NotificationBroadcaster() {};
|
|
|
|
nodeutil.inherits(NotificationBroadcaster, events.EventEmitter);
|
|
|
|
NotificationBroadcaster.prototype.broadcast = function(eventName, notification, walletService) {
|
|
this.emit(eventName, notification, walletService);
|
|
};
|
|
|
|
var _instance;
|
|
NotificationBroadcaster.singleton = function() {
|
|
if (!_instance) {
|
|
_instance = new NotificationBroadcaster();
|
|
}
|
|
return _instance;
|
|
};
|
|
|
|
module.exports = NotificationBroadcaster.singleton();
|
|
|