inngest
Version:
Official SDK for Inngest.com. Inngest is the reliability layer for modern applications. Inngest combines durable execution, events, and queues into a zero-infra platform with built-in observability.
17 lines (15 loc) • 621 B
JavaScript
//#region src/components/connect/types.ts
const DEFAULT_SHUTDOWN_SIGNALS = ["SIGINT", "SIGTERM"];
let ConnectionState = /* @__PURE__ */ function(ConnectionState$1) {
ConnectionState$1["CONNECTING"] = "CONNECTING";
ConnectionState$1["ACTIVE"] = "ACTIVE";
ConnectionState$1["PAUSED"] = "PAUSED";
ConnectionState$1["RECONNECTING"] = "RECONNECTING";
ConnectionState$1["CLOSING"] = "CLOSING";
ConnectionState$1["CLOSED"] = "CLOSED";
return ConnectionState$1;
}({});
//#endregion
exports.ConnectionState = ConnectionState;
exports.DEFAULT_SHUTDOWN_SIGNALS = DEFAULT_SHUTDOWN_SIGNALS;
//# sourceMappingURL=types.cjs.map