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

jadex.rules.eca.IAction Maven / Gradle / Ivy

There is a newer version: 4.0.267
Show newest version
package jadex.rules.eca;

import jadex.commons.future.IFuture;

/**
 *  Interface for the action part of a rule.
 */
public interface IAction
{
	/**
	 *  Execute the action.
	 *  @param event The event.
	 *  @param rule The rule this action belongs to.
	 *  @param context The user context.
	 *  @param condresult The condition result.
	 */
	public IFuture execute(IEvent event, IRule rule, Object context, Object condresult);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy