Files
triggerdotdev--trigger.dev/apps/webapp/app/services/runsReplicationGlobal.server.ts
Eric Allam d1e40643fc Allow creating and monitoring run replication services with different settings (#2055)
* Allow creating and monitoring run replication services with different settings

* Fix test
2025-05-14 20:40:47 +01:00

37 lines
1.1 KiB
TypeScript

import { RunsReplicationService } from "./runsReplicationService.server";
const GLOBAL_RUNS_REPLICATION_KEY = Symbol.for("dev.trigger.ts.runs-replication");
const GLOBAL_TCP_MONITOR_KEY = Symbol.for("dev.trigger.ts.tcp-monitor");
type RunsReplicationGlobal = {
[GLOBAL_RUNS_REPLICATION_KEY]?: RunsReplicationService;
[GLOBAL_TCP_MONITOR_KEY]?: NodeJS.Timeout;
};
const _globalThis = typeof globalThis === "object" ? globalThis : global;
const _global = _globalThis as RunsReplicationGlobal;
export function getRunsReplicationGlobal(): RunsReplicationService | undefined {
return _global[GLOBAL_RUNS_REPLICATION_KEY];
}
export function setRunsReplicationGlobal(service: RunsReplicationService) {
_global[GLOBAL_RUNS_REPLICATION_KEY] = service;
}
export function unregisterRunsReplicationGlobal() {
delete _global[GLOBAL_RUNS_REPLICATION_KEY];
}
export function getTcpMonitorGlobal(): NodeJS.Timeout | undefined {
return _global[GLOBAL_TCP_MONITOR_KEY];
}
export function setTcpMonitorGlobal(timeout: NodeJS.Timeout) {
_global[GLOBAL_TCP_MONITOR_KEY] = timeout;
}
export function unregisterTcpMonitorGlobal() {
delete _global[GLOBAL_TCP_MONITOR_KEY];
}