com.xxdb.io.ExtendedDataInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-java Show documentation
Show all versions of api-java Show documentation
The messaging and data conversion protocol between Java and DolphinDB server
package com.xxdb.io;
import java.io.DataInput;
import java.io.IOException;
public interface ExtendedDataInput extends DataInput{
boolean isLittleEndian();
String readString() throws IOException;
}