All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.redislabs.redisgraph.ResultSet Maven / Gradle / Ivy

There is a newer version: 2.6.0-rc3
Show newest version
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