SSE Server example - pushing data (on a timer?)

Most of the SSE examples I have seen are pushing data as a response to someone calling a service (ie:chat). Does an example exist that’s more like someone receiving periodic updates like stock prices over a wire? Thanks

Just call IServerEvents API in the timer callback. Outside of your AppHost you can access the IServerEvents singleton dependency with HostContext.TryResolve<IServerEvents>().