UNPKG

rage-framework

Version:

## How to Install *server-side* ```bash npm install @rage-framework/server ```

61 lines 3 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.ExitHandlerService = exports.ShutdownSignal = void 0; const core_1 = require("@rage-framework/core"); var ShutdownSignal; (function (ShutdownSignal) { ShutdownSignal["SIGHUP"] = "SIGHUP"; ShutdownSignal["SIGINT"] = "SIGINT"; ShutdownSignal["SIGQUIT"] = "SIGQUIT"; ShutdownSignal["SIGILL"] = "SIGILL"; ShutdownSignal["SIGTRAP"] = "SIGTRAP"; ShutdownSignal["SIGABRT"] = "SIGABRT"; ShutdownSignal["SIGBUS"] = "SIGBUS"; ShutdownSignal["SIGFPE"] = "SIGFPE"; ShutdownSignal["SIGSEGV"] = "SIGSEGV"; ShutdownSignal["SIGUSR2"] = "SIGUSR2"; ShutdownSignal["SIGTERM"] = "SIGTERM"; })(ShutdownSignal = exports.ShutdownSignal || (exports.ShutdownSignal = {})); let ExitHandlerService = class ExitHandlerService { init() { const signals = Object.keys(ShutdownSignal); this.listenToShutdownSignals(signals); } listenToShutdownSignals(signals) { const cleanup = (signal) => __awaiter(this, void 0, void 0, function* () { var _a; try { signals.forEach((sig) => process.removeListener(sig, cleanup)); console.log('AppStopped'); process.kill(process.pid, signal); } catch (err) { console.log((_a = err) === null || _a === void 0 ? void 0 : _a.stack); process.exit(1); } }); signals.forEach((signal) => { process.on(signal, cleanup); }); } }; ExitHandlerService = __decorate([ core_1.Service() ], ExitHandlerService); exports.ExitHandlerService = ExitHandlerService; //# sourceMappingURL=exit-handler.service.js.map