Class BufferingJSONAsyncParser

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      <R> R complete()
      Signals the end of the JSON string content to this parser and returns the parsed object.
      void parse​(byte[] bytes, int offset, int length)  
      void parse​(java.nio.ByteBuffer byteBuffer)  
      • Methods inherited from class java.lang.Object

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

      • parse

        public void parse​(byte[] bytes,
                          int offset,
                          int length)
        Specified by:
        parse in interface JSONContext.AsyncParser
        Parameters:
        bytes - the bytes chunk to parse
        offset - the offset to start parsing from
        length - the number of bytes to parse
      • parse

        public void parse​(java.nio.ByteBuffer byteBuffer)
        Specified by:
        parse in interface JSONContext.AsyncParser
        Parameters:
        byteBuffer - the buffer chunk to parse
      • complete

        public <R> R complete()
        Description copied from interface: JSONContext.AsyncParser

        Signals the end of the JSON string content to this parser and returns the parsed object.

        Specified by:
        complete in interface JSONContext.AsyncParser
        Type Parameters:
        R - the type to cast the result to
        Returns:
        the result of the JSON parsing