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

jadex.extension.envsupport.environment.ISpaceExecutor 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.environment;

import jadex.commons.IPropertyObject;

/**
 *  A space executor is responsible for executing an environment
 *  in a certain manner (e.g. round-based).
 */
public interface ISpaceExecutor extends IPropertyObject
{
	//-------- constants --------
	
	/** Property to enable execution monitoring
	 * (i.e. print warnings when components are still executing during advancement of time). */
	public static String	PROPERTY_EXECUTION_MONITORING	= "execution_monitoring";
	
	//-------- methods --------
	
	/**
	 *  Start the space executor.
	 */
	public void start();
	
	/**
	 *  Terminate the space executor.
	 */
	public void terminate();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy