diff --git a/core/app.go b/core/app.go index 24e573f6..f1dad330 100644 --- a/core/app.go +++ b/core/app.go @@ -291,14 +291,14 @@ type App interface { // SSE client connection. OnRealtimeDisconnectRequest() *hook.Hook[*RealtimeDisconnectEvent] - // OnRealtimeBeforeMessage hook is triggered right before sending + // OnRealtimeBeforeMessageSend hook is triggered right before sending // an SSE message to a client. // // Returning [hook.StopPropagation] will prevent sending the message. // Returning any other non-nil error will close the realtime connection. OnRealtimeBeforeMessageSend() *hook.Hook[*RealtimeMessageEvent] - // OnRealtimeBeforeMessage hook is triggered right after sending + // OnRealtimeAfterMessageSend hook is triggered right after sending // an SSE message to a client. OnRealtimeAfterMessageSend() *hook.Hook[*RealtimeMessageEvent]