Class 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 java.lang.Object
    implements jakarta.websocket.Decoder.TextStream<T>
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface jakarta.websocket.Decoder

        jakarta.websocket.Decoder.Binary<T extends java.lang.Object>, jakarta.websocket.Decoder.BinaryStream<T extends java.lang.Object>, jakarta.websocket.Decoder.Text<T extends java.lang.Object>, jakarta.websocket.Decoder.TextStream<T extends java.lang.Object>
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private jakarta.json.JsonReaderFactory factory  
    • Constructor Summary

      Constructors 
      Constructor Description
      JsrDecoder()  
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      T decode​(java.io.Reader reader)  
      void destroy()  
      protected abstract T doRead​(jakarta.json.JsonReader jsonReader)  
      void init​(jakarta.websocket.EndpointConfig endpointConfig)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • factory

        private jakarta.json.JsonReaderFactory factory
    • Constructor Detail

      • JsrDecoder

        public JsrDecoder()
    • Method Detail

      • doRead

        protected abstract T doRead​(jakarta.json.JsonReader jsonReader)
      • init

        public void init​(jakarta.websocket.EndpointConfig endpointConfig)
        Specified by:
        init in interface jakarta.websocket.Decoder
      • decode

        public T decode​(java.io.Reader reader)
                 throws jakarta.websocket.DecodeException,
                        java.io.IOException
        Specified by:
        decode in interface jakarta.websocket.Decoder.TextStream<T>
        Throws:
        jakarta.websocket.DecodeException
        java.io.IOException
      • destroy

        public void destroy()
        Specified by:
        destroy in interface jakarta.websocket.Decoder