jadex.micro.examples.mandelbrot.ICalculateService 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.examples.mandelbrot;
import jadex.bridge.service.annotation.Timeout;
import jadex.commons.future.IFuture;
/**
* Interface for calculating an area of points.
*/
public interface ICalculateService
{
/**
* Calculate colors for an area of points.
* @param data The area to be calculated.
* @return A future containing the calculated area.
*/
@Timeout(30000)
public IFuture calculateArea(AreaData data);
}