info.archinnov.achilles.internal.async.RowsWithExecutionInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of achilles-core Show documentation
Show all versions of achilles-core Show documentation
CQL implementation for Achilles using Datastax Java driver
package info.archinnov.achilles.internal.async;
import com.datastax.driver.core.ExecutionInfo;
import com.datastax.driver.core.Row;
import java.util.List;
public class RowsWithExecutionInfo {
private final List rows;
private final ExecutionInfo executionInfo;
public RowsWithExecutionInfo(List rows, ExecutionInfo executionInfo) {
this.rows = rows;
this.executionInfo = executionInfo;
}
public List getRows() {
return rows;
}
public ExecutionInfo getExecutionInfo() {
return executionInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy