org.oxerr.huobi.rest.valuereader.ValueReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of huobi-client-rest Show documentation
Show all versions of huobi-client-rest Show documentation
Client for <a href="https://www.huobi.com">Huobi</a> RESTful API.
The newest version!
package org.oxerr.huobi.rest.valuereader;
import java.io.IOException;
import java.io.InputStream;
public interface ValueReader {
T read(InputStream inputStream) throws IOException;
}