com.xxdb.DBTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dolphindb-javaapi Show documentation
Show all versions of dolphindb-javaapi Show documentation
The messaging and data conversion protocol between Java and DolphinDB server
package com.xxdb;
import java.util.concurrent.Callable;
import com.xxdb.data.Entity;
public interface DBTask extends Callable{
void setDBConnection(DBConnection conn);
Entity getResult();
String getErrorMsg();
String getScript();
boolean isSuccessful();
boolean isFinished();
}