Safe Haskell | None |
---|
This module contains everything that you need to support server-sent events in Yesod applications.
- repEventSource :: (EventSourcePolyfill -> Source (HandlerT site IO) ServerEvent) -> HandlerT site IO TypedContent
- pollingEventSource :: s -> (EventSourcePolyfill -> s -> HandlerT site IO ([ServerEvent], s)) -> HandlerT site IO TypedContent
- ioToRepEventSource :: s -> (EventSourcePolyfill -> s -> IO ([ServerEvent], s)) -> HandlerT site IO TypedContent
- data EventSourcePolyfill
Documentation
repEventSource :: (EventSourcePolyfill -> Source (HandlerT site IO) ServerEvent) -> HandlerT site IO TypedContentSource
Returns a Server-Sent Event stream from a Source
of
ServerEvent
s
. The HTTP socket is flushed after every
event. The connection is closed either when the Source
finishes outputting data or a CloseEvent
is outputted,
whichever comes first.
pollingEventSource :: s -> (EventSourcePolyfill -> s -> HandlerT site IO ([ServerEvent], s)) -> HandlerT site IO TypedContentSource
Return a Server-Sent Event stream given a HandlerT
action
that is repeatedly called. A state is threaded for the action
so that it may avoid using IORefs
. The HandlerT
action
may sleep or block while waiting for more data. The HTTP
socket is flushed after every list of simultaneous events.
The connection is closed as soon as an CloseEvent
is
outputted, after which no other events are sent to the client.
ioToRepEventSource :: s -> (EventSourcePolyfill -> s -> IO ([ServerEvent], s)) -> HandlerT site IO TypedContentSource
Return a Server-Sent Event stream given an IO
action that
is repeatedly called. A state is threaded for the action so
that it may avoid using IORefs
. The IO
action may sleep
or block while waiting for more data. The HTTP socket is
flushed after every list of simultaneous events. The
connection is closed as soon as an CloseEvent
is
outputted, after which no other events are sent to the client.
data EventSourcePolyfill Source
Which EventSource
polyfill was detected (if any).
NoESPolyfill | We didn't detect any |
Remy'sESPolyfill | See https://github.com/remy/polyfills/blob/master/EventSource.js. In order to support Remy's polyfill, your server needs to explicitly close the connection from time to time--browsers such as IE7 will not show any event until the connection is closed. |