Skip to main content

Variable: RENDERER_EVENT_CHANNELS

const RENDERER_EVENT_CHANNELS: {
CACHE_INVALIDATED: "cache:invalidated";
MONITOR_CHECK_COMPLETED: "monitor:check-completed";
MONITOR_STATUS_CHANGED: "monitor:status-changed";
MONITORING_STARTED: "monitoring:started";
MONITORING_STOPPED: "monitoring:stopped";
SETTINGS_HISTORY_LIMIT_UPDATED: "settings:history-limit-updated";
STATE_SYNC: "state-sync-event";
UPDATE_STATUS: "update-status";
};

Defined in: shared/ipc/rendererEvents.ts:32

Canonical list of renderer IPC channels used for backend โ†’ renderer events.

Type Declarationโ€‹

CACHE_INVALIDATEDโ€‹

readonly CACHE_INVALIDATED: "cache:invalidated" = "cache:invalidated";

Broadcast cache invalidation events.

MONITOR_CHECK_COMPLETEDโ€‹

readonly MONITOR_CHECK_COMPLETED: "monitor:check-completed" = "monitor:check-completed";

Broadcast monitor check completion events.

MONITOR_STATUS_CHANGEDโ€‹

readonly MONITOR_STATUS_CHANGED: "monitor:status-changed" = "monitor:status-changed";

Broadcast monitor status change events with enriched payloads.

MONITORING_STARTEDโ€‹

readonly MONITORING_STARTED: "monitoring:started" = "monitoring:started";

Broadcast monitoring lifecycle start events.

MONITORING_STOPPEDโ€‹

readonly MONITORING_STOPPED: "monitoring:stopped" = "monitoring:stopped";

Broadcast monitoring lifecycle stop events.

SETTINGS_HISTORY_LIMIT_UPDATEDโ€‹

readonly SETTINGS_HISTORY_LIMIT_UPDATED: "settings:history-limit-updated" = "settings:history-limit-updated";

Broadcast history limit updates originating from the database.

STATE_SYNCโ€‹

readonly STATE_SYNC: "state-sync-event" = "state-sync-event";

Broadcast incremental state synchronisation snapshots.

UPDATE_STATUSโ€‹

readonly UPDATE_STATUS: "update-status" = "update-status";

Broadcast auto-updater status transitions.