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

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

import java.util.Map;

/**
 *  An external system, in which a waiting can be initiated.
 */
public interface IExternalNotifier
{
	/**
	 *  Activate a wait action on an external source.
	 *  @param properties The properties.
	 *  @param notifier The notifier.
	 */
	public void activateWait(Map properties, Notifier notifier);
	
	/**
	 *  Cancel the wait action.
	 */
	public void cancel();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy