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 SummaryFields Modifier and Type Field Description private jakarta.json.JsonReaderFactoryfactory
 - 
Constructor SummaryConstructors Constructor Description JsrDecoder()
 - 
Method SummaryAll 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- 
doReadprotected abstract T doRead(jakarta.json.JsonReader jsonReader) 
 - 
initpublic void init(jakarta.websocket.EndpointConfig endpointConfig) - Specified by:
- initin interface- jakarta.websocket.Decoder
 
 - 
decodepublic T decode(Reader reader) throws jakarta.websocket.DecodeException, IOException - Specified by:
- decodein interface- jakarta.websocket.Decoder.TextStream<T>
- Throws:
- jakarta.websocket.DecodeException
- IOException
 
 - 
destroypublic void destroy() - Specified by:
- destroyin interface- jakarta.websocket.Decoder
 
 
- 
 
-