Class JsrDecoder<T>
- java.lang.Object
-
- org.apache.johnzon.websocket.internal.jsr.JsrDecoder<T>
-
- All Implemented Interfaces:
jakarta.websocket.Decoder,jakarta.websocket.Decoder.TextStream<T>
- Direct Known Subclasses:
JsrArrayDecoder,JsrObjectDecoder,JsrStructureDecoder
public abstract class JsrDecoder<T> extends Object implements jakarta.websocket.Decoder.TextStream<T>
-
-
Field Summary
Fields Modifier and Type Field Description private jakarta.json.JsonReaderFactoryfactory
-
Constructor Summary
Constructors Constructor Description JsrDecoder()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Tdecode(Reader reader)voiddestroy()protected abstract TdoRead(jakarta.json.JsonReader jsonReader)voidinit(jakarta.websocket.EndpointConfig endpointConfig)
-
-
-
Method Detail
-
doRead
protected abstract T doRead(jakarta.json.JsonReader jsonReader)
-
init
public void init(jakarta.websocket.EndpointConfig endpointConfig)
- Specified by:
initin interfacejakarta.websocket.Decoder
-
decode
public T decode(Reader reader) throws jakarta.websocket.DecodeException, IOException
- Specified by:
decodein interfacejakarta.websocket.Decoder.TextStream<T>- Throws:
jakarta.websocket.DecodeExceptionIOException
-
destroy
public void destroy()
- Specified by:
destroyin interfacejakarta.websocket.Decoder
-
-