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

jadex.bpmn.tutorial.IBService 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.tutorial;

import jadex.commons.future.IFuture;
import jadex.commons.future.IIntermediateFuture;

/**
 * 
 */
public interface IBService
{
	/**
	 * 
	 */
	public IFuture add(int a, int b);
	
	/**
	 * 
	 */
	public IFuture sub(int a, int b);
	
	/**
	 * 
	 */
	public IIntermediateFuture count();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy