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

jadex.bpmn.runtime.IInternalProcessEngineService 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;

import java.util.Map;

import jadex.bridge.modelinfo.UnparsedExpression;
import jadex.bridge.service.annotation.Service;
import jadex.commons.IResultCommand;
import jadex.commons.future.IFuture;

/**
 *  Services to be called from BPMN process instances
 *  to some super-ordinated process engine, if any.
 */
@Service
public interface IInternalProcessEngineService
{
	/**
	 *  Register an event description to be notified, when the event happens.
	 *  @return An id to be used for deregistration.
	 */
	public IFuture	addEventMatcher(String[] eventtypes, UnparsedExpression expression, String[] imports, 
		Map params, boolean remove, IResultCommand, Object> command);
	
	/**
	 *  Register an event description to be notified, when the event happens.
	 */
	public IFuture	removeEventMatcher(String id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy