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

cc.blynk.clickhouse.copy.ReaderInputStream Maven / Gradle / Ivy

There is a newer version: 1.4.4
Show newest version
package cc.blynk.clickhouse.copy;

import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;

final class ReaderInputStream extends InputStream {

    private final Reader reader;

    ReaderInputStream(Reader reader) {
        this.reader = reader;
    }

    @Override
    public int read() throws IOException {
        return reader.read();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy