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

jadex.extension.envsupport.evaluation.ITableDataConsumer Maven / Gradle / Ivy

Go to download

The Jadex kernel extension envsupport allows for using 2D spaces in concert with components.

There is a newer version: 3.0.117
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy