jadex.bpmn.tutorial.IBService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-bpmn Show documentation
Show all versions of jadex-applications-bpmn Show documentation
The Jadex bpmn applications package contains several example applications, benchmarks and testcases using bpmn workflows.
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();
}