wai-extra-3.0.4.1: Provides some basic WAI handlers and middleware.

Safe HaskellNone
LanguageHaskell98

Network.Wai.EventSource.EventStream

Description

Internal module, usually you don't need to use it.

Synopsis

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.

Constructors

ServerEvent 

Fields

eventName :: Maybe Builder
 
eventId :: Maybe Builder
 
eventData :: [Builder]
 
CommentEvent 

Fields

eventComment :: Builder
 
RetryEvent 

Fields

eventRetry :: Int
 
CloseEvent 

eventToBuilder :: ServerEvent -> Maybe Builder Source

Converts a ServerEvent to its wire representation as specified by the text/event-stream content type.