com.redislabs.redisgraph.ResultSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jredisgraph Show documentation
Show all versions of jredisgraph Show documentation
Official client for Redis-Graph
package com.redislabs.redisgraph;
import java.util.Iterator;
import java.util.List;
/**
* Hold a query result
*/
public interface ResultSet extends Iterator{
/**
* Return the query statistics
* @return statistics object
*/
Statistics getStatistics();
List getHeader();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy