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

com.qiniu.interfaces.IReader Maven / Gradle / Ivy

There is a newer version: 8.4.8
Show newest version
package com.qiniu.interfaces;

import java.io.IOException;
import java.util.stream.Stream;

public interface IReader {

    String getName();

    T getRealReader();

    String readLine() throws IOException;

    Stream lines();

    void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy