0
で「閉じる」イベントを放出することを拒否し、私は次のコードを持っているハイテク:サーバーを使用して、ストップ機能を呼び出した後は「ネット」nodejs
this.stop = function() {
this.server.close();
var thisServer = this;
this.server.on('close',function() {
thisServer.emit('stop');
});
};
を、サーバが「近い」イベントを発するように を拒否し、
this.server.on('close',function() {
thisServer.emit('stop');
});
私は何か間違っていますか?