eazy-pomelo
Version:
NetEase Pomelo Of EazyGame OEM
38 lines (28 loc) • 674 B
JavaScript
/**
* Component for monitor.
* Load and start monitor client.
*/
var Monitor = require('../monitor/monitor');
/**
* Component factory function
*
* @param {Object} app current application context
* @return {Object} component instances
*/
module.exports = function(app, opts) {
return new Component(app, opts);
};
var Component = function(app, opts) {
this.monitor = new Monitor(app, opts);
};
var pro = Component.prototype;
pro.name = '__monitor__';
pro.start = function(cb) {
this.monitor.start(cb);
};
pro.stop = function(force, cb) {
this.monitor.stop(cb);
};
pro.reconnect = function(masterInfo) {
this.monitor.reconnect(masterInfo);
};