jadex.micro.testcases.ICService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-micro Show documentation
Show all versions of jadex-applications-micro Show documentation
The Jadex micro applications package contains several example applications, benchmarks and testcases using micro agents.
package jadex.micro.testcases;
import jadex.bridge.service.annotation.Reference;
import jadex.commons.future.IFuture;
import jadex.commons.future.IIntermediateFuture;
/**
* Test if parameter call-by-copy and call-by-reference work (in local case).
*/
public interface ICService
{
/**
* Test if an argument can be passed by reference.
*/
public IFuture testArgumentReference(@Reference Object arg, int arghash);
/**
* Test if an argument can be passed by copy.
*/
public IFuture testArgumentCopy(Object arg, int arghash);
/**
* Test if result value can be passed by reference.
*/
public @Reference IFuture