Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Internal module, usually you don't need to use it.
Synopsis
- data ServerEvent
- = ServerEvent { }
- | CommentEvent { }
- | RetryEvent {
- eventRetry :: Int
- | CloseEvent
- eventToBuilder :: ServerEvent -> Maybe Builder
Documentation
data ServerEvent Source #
Type representing a communication over an event stream. This can be an actual event, a comment, a modification to the retry timer, or a special "close" event indicating the server should close the connection.
eventToBuilder :: ServerEvent -> Maybe Builder Source #
Converts a ServerEvent
to its wire representation as specified by the
text/event-stream
content type.