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.
15 lines (14 loc) • 569 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
export { ConnectionState, DEFAULT_SHUTDOWN_SIGNALS };
//# sourceMappingURL=types.js.map