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

jadex.bpmn.runtime.exttask.IExternalTask Maven / Gradle / Ivy

Go to download

The Jadex BPMN kernel provides a workflow kernel for the standardized business process modeling notation. The kernel relies on annotated BPMN diagrams, which include detailed execution information.

There is a newer version: 4.0.267
Show newest version
package jadex.bpmn.runtime.exttask;

import java.util.Map;

import jadex.commons.future.IFuture;

/**
 * 
 */
public interface IExternalTask
{
	/**
	 *  Execute the task.
	 *  @return	To be notified, when the task has completed.
	 */
	public IFuture> execute();
	
	/**
	 *  Cleanup in case the task is cancelled.
	 *  @return	A future to indicate when cancellation has completed.
	 */
	public IFuture cancel();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy