Files
clawdbot/apps/macos/Sources/Clawdis/GatewayPush.swift
2025-12-13 04:28:43 +00:00

14 lines
469 B
Swift

import ClawdisProtocol
/// Server-push messages from the gateway websocket.
///
/// This is the in-process replacement for the legacy `NotificationCenter` fan-out.
enum GatewayPush: Sendable {
/// A full snapshot that arrives on connect (or reconnect).
case snapshot(HelloOk)
/// A server push event frame.
case event(EventFrame)
/// A detected sequence gap (`expected...received`) for event frames.
case seqGap(expected: Int, received: Int)
}