123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /**
- * Component for server starup.
- */
- var Server = require('../server/server');
- /**
- * Component factory function
- *
- * @param {Object} app current application context
- * @return {Object} component instance
- */
- module.exports = function(app, opts) {
- return new Component(app, opts);
- };
- /**
- * Server component class
- *
- * @param {Object} app current application context
- */
- var Component = function(app, opts) {
- this.server = Server.create(app, opts);
- };
- var pro = Component.prototype;
- pro.name = '__server__';
- /**
- * Component lifecycle callback
- *
- * @param {Function} cb
- * @return {Void}
- */
- pro.start = function(cb) {
- this.server.start();
- process.nextTick(cb);
- };
- /**
- * Component lifecycle callback
- *
- * @param {Function} cb
- * @return {Void}
- */
- Component.prototype.afterStart = function(cb) {
- this.server.afterStart();
- process.nextTick(cb);
- };
- /**
- * Component lifecycle function
- *
- * @param {Boolean} force whether stop the component immediately
- * @param {Function} cb
- * @return {Void}
- */
- pro.stop = function(force, cb) {
- this.server.stop();
- process.nextTick(cb);
- };
- /**
- * Proxy server handle
- */
- pro.handle = function(msg, session, cb) {
- this.server.handle(msg, session, cb);
- };
- /**
- * Proxy server global handle
- */
- Component.prototype.globalHandle = function(msg, session, cb) {
- this.server.globalHandle(msg, session, cb);
- };
|