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

jadex.bpmn.runtime.exttask.ITaskExecutionService 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 jadex.bpmn.model.task.ITask;
import jadex.bpmn.model.task.ITaskContext;
import jadex.bridge.service.annotation.Service;
import jadex.commons.future.IFuture;

/**
 * 
 */
@Service
public interface ITaskExecutionService
{
//	/**
//	 * 
//	 */
//	public  IFuture execute(IResultCommand> activity);
	
//	/**
//	 * 
//	 */
//	public  IFuture execute(Map args, Class>> activity);

//	/**
//	 * 
//	 */
//	public IFuture> execute(IExternalTask task);
	public IFuture execute(ITask task, ITaskContext context);
	
//	/**
//	 * 
//	 */
//	public  IFuture execute(Map args, IResultCommand, Map> activity);


	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy