ru.yandex.clickhouse.ResponseFactory Maven / Gradle / Ivy
package ru.yandex.clickhouse;
import java.io.IOException;
import java.io.InputStream;
/**
* Interface for consuming content from server response and
* @param type of response
*/
public interface ResponseFactory {
public T create(InputStream response) throws IOException;
}