jadex.extension.envsupport.evaluation.ITableDataConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-kernel-extension-envsupport Show documentation
Show all versions of jadex-kernel-extension-envsupport Show documentation
The Jadex kernel extension envsupport allows for using 2D spaces in concert with components.
package jadex.extension.envsupport.evaluation;
import jadex.commons.IPropertyObject;
/**
* A table data consumer is triggered to consume data.
* Consumption can e.g. be writing to a file or showing the data as a graph.
* It uses a data provider to access the data.
*/
public interface ITableDataConsumer extends IPropertyObject
{
/**
* Consume data from the provider.
* @param time The current time.
* @param tick The current tick.
*/
public void consumeData(long time, double tick);
}