Interface JSONContext.AsyncParser

    • Method Summary

      All Methods Instance Methods Abstract Methods Default 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.
      default void parse​(byte[] bytes, int offset, int length)  
      void parse​(java.nio.ByteBuffer buffer)  
    • Method Detail

      • parse

        default void parse​(byte[] bytes,
                           int offset,
                           int length)
        Parameters:
        bytes - the bytes chunk to parse
        offset - the offset to start parsing from
        length - the number of bytes to parse
      • parse

        void parse​(java.nio.ByteBuffer buffer)
        Parameters:
        buffer - the buffer chunk to parse
      • complete

        <R> R complete()

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

        Type Parameters:
        R - the type to cast the result to
        Returns:
        the result of the JSON parsing