All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.clustermate.client.util.ContentConverter Maven / Gradle / Ivy

There is a newer version: 0.10.5
Show newest version
package com.fasterxml.clustermate.client.util;

import java.io.*;

import com.fasterxml.clustermate.api.ContentType;

/**
 * Base class for objects that are used for converting entities, by
 * decoding and/or parsing entities from stream or chunked input.
 */
public interface ContentConverter
{
    public T convert(ContentType contentType, InputStream in) throws IOException;

    public T convert(ContentType contentType, byte[] buffer, int offset, int length) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy