Interface JSONContext.Parser

  • Enclosing interface:
    JSONContext<T extends org.cometd.bayeux.Message.Mutable>

    public static interface JSONContext.Parser
    A blocking JSON parser.
    • Method Detail

      • parse

        <R> R parse​(Reader reader,
                    Class<R> type)
             throws ParseException

        Parses a JSON string from the given reader.

        Type Parameters:
        R - the type of the result
        Parameters:
        reader - the reader to parse from
        type - the type to cast the result to
        Returns:
        the result of the JSON parsing
        Throws:
        ParseException - if the JSON is malformed