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

jadex.bpmn.examples.service.ICalculatorService Maven / Gradle / Ivy

Go to download

The Jadex bpmn applications package contains several example applications, benchmarks and testcases using bpmn workflows.

There is a newer version: 4.0.267
Show newest version
package jadex.bpmn.examples.service;

import jadex.commons.future.IFuture;

/**
 *  Service provided by the process.
 */
public interface ICalculatorService
{
	/**
	 *  Add two values.
	 */
	public IFuture	addValues(int a, int b);

	/**
	 *  Add three values.
	 */
	public IFuture	addValues(int a, int b, int c);

	/**
	 *  Subtract b from a.
	 *  @param a	The first value.
	 *  @param b	The value to subtract from the first.
	 */
	public IFuture	subtractValues(int a, int b);
	
	/**
	 *  Method produces an exception.
	 */
	public IFuture	broken(int a);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy