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