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

li.rudin.mavenjs.charting.ChartingDataSource Maven / Gradle / Ivy

The newest version!
package li.rudin.mavenjs.charting;

import java.util.List;

import li.rudin.mavenjs.charting.metadata.SourceMetadata;
import li.rudin.mavenjs.charting.result.ChartResult;


public interface ChartingDataSource
{

	/**
	 * Queries the data between the given time
	 * @param from
	 * @param to
	 * @param items
	 * @return
	 */
	List getData(long from, long to);
	
	/**
	 * Returns the chart metadata
	 * @return
	 */
	SourceMetadata getMetadata();

}








© 2015 - 2025 Weber Informatics LLC | Privacy Policy