Package jakarta.ws.rs.sse
Interface InboundSseEvent
- 
- 
Field Summary
- 
Fields inherited from interface jakarta.ws.rs.sse.SseEvent
RECONNECT_NOT_SET 
 - 
 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisEmpty()Check if the event is empty (i.e.StringreadData()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> TreadData(Class<T> type)Read event data as a given Java type.<T> TreadData(Class<T> messageType, MediaType mediaType)Read event data as a given Java type.- 
Methods inherited from interface jakarta.ws.rs.sse.SseEvent
getComment, getId, getName, getReconnectDelay, isReconnectDelaySet 
 - 
 
 - 
 
- 
- 
Method Detail
- 
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
<T> T readData(Class<T> type)
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
<T> T readData(GenericType<T> type)
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
<T> T readData(Class<T> messageType, MediaType mediaType)
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
<T> T readData(GenericType<T> type, MediaType mediaType)
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.
 
 - 
 
 -