- 
Field Summary
Fields inherited from interface jakarta.ws.rs.sse.SseEvent
RECONNECT_NOT_SET - 
Method Summary
Modifier and TypeMethodDescriptionbooleanisEmpty()Check if the event is empty (i.e.readData()Get the original event data asString.<T> TreadData(GenericType<T> type) Read event data as a given generic type.<T> TreadData(GenericType<T> type, MediaType mediaType) Read event data as a given generic type.<T> TRead event data as a given Java type.<T> TRead event data as a given Java type.Methods inherited from interface jakarta.ws.rs.sse.SseEvent
getComment, getId, getName, getReconnectDelay, isReconnectDelaySet 
- 
Method Details
- 
isEmpty
boolean isEmpty()Check if the event is empty (i.e. does not contain any data).- Returns:
 trueif current instance does not contain any data,falseotherwise.
 - 
readData
String readData()Get the original event data asString.- Returns:
 - event data de-serialized into a string.
 - Throws:
 ProcessingException- when provided type can't be read. The thrown exception wraps the original cause.
 - 
readData
Read event data as a given Java type.- Type Parameters:
 T- generic event data type- Parameters:
 type- Java type to be used for event data de-serialization.- Returns:
 - event data de-serialized as an instance of a given type.
 - Throws:
 ProcessingException- when provided type can't be read. The thrown exception wraps the original cause.
 - 
readData
Read event data as a given generic type.- Type Parameters:
 T- generic event data type- Parameters:
 type- generic type to be used for event data de-serialization.- Returns:
 - event data de-serialized as an instance of a given type.
 - Throws:
 ProcessingException- when provided type can't be read. The thrown exception wraps the original cause.
 - 
readData
Read event data as a given Java type.- Type Parameters:
 T- generic event data type- Parameters:
 messageType- Java type to be used for event data de-serialization.mediaType-media typeto be used for event data de-serialization.- Returns:
 - event data de-serialized as an instance of a given type.
 - Throws:
 ProcessingException- when provided type can't be read. The thrown exception wraps the original cause.
 - 
readData
Read event data as a given generic type.- Type Parameters:
 T- generic event data type- Parameters:
 type- generic type to be used for event data de-serialization.mediaType-media typeto be used for event data de-serialization.- Returns:
 - event data de-serialized as an instance of a given type.
 - Throws:
 ProcessingException- when provided type can't be read. The thrown exception wraps the original cause.
 
 -