Interface ParsingLoadable.Parser<T>

    • Method Detail

      • parse

        T parse​(Uri uri,
                InputStream inputStream)
         throws IOException
        Parses an object from a response.
        Parameters:
        uri - The source Uri of the response, after any redirection.
        inputStream - An InputStream from which the response data can be read.
        Returns:
        The parsed object.
        Throws:
        ParserException - If an error occurs parsing the data.
        IOException - If an error occurs reading data from the stream.