final case class ServerSentEvent(data: String, eventType: Option[String] = None, id: Option[String] = None, retry: Option[Int] = None) extends javadsl.model.sse.ServerSentEvent with Product with Serializable
Representation of a server-sent event. According to the specification, an empty data field designates an event which is to be ignored which is useful for heartbeats.
- data
data, may span multiple lines
- eventType
optional type, must not contain \n or \r
- id
optional id, must not contain \n or \r
- retry
optional reconnection delay in milliseconds
- Source
- ServerSentEvent.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ServerSentEvent
- Serializable
- Serializable
- Product
- Equals
- ServerSentEvent
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
Value Members
- val data: String
- val eventType: Option[String]
-
def
getData(): String
Data, may span multiple lines.
Data, may span multiple lines.
- Definition Classes
- ServerSentEvent → ServerSentEvent
-
def
getEventType(): Optional[String]
Optional type, must not contain \n or \r.
Optional type, must not contain \n or \r.
- Definition Classes
- ServerSentEvent → ServerSentEvent
-
def
getId(): Optional[String]
Optional id, must not contain \n or \r.
Optional id, must not contain \n or \r.
- Definition Classes
- ServerSentEvent → ServerSentEvent
-
def
getRetry(): OptionalInt
Optional reconnection delay in milliseconds.
Optional reconnection delay in milliseconds.
- Definition Classes
- ServerSentEvent → ServerSentEvent
- val id: Option[String]
- val retry: Option[Int]