jadex.bpmn.examples.nfprops.IAService 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.examples.nfprops;
import jadex.bridge.nonfunctional.annotation.NFProperties;
import jadex.bridge.nonfunctional.annotation.NFProperty;
import jadex.bridge.sensor.service.ExecutionTimeProperty;
import jadex.bridge.sensor.service.WaitqueueProperty;
import jadex.commons.future.IFuture;
/**
*
*/
public interface IAService
{
/**
* Test method.
*/
@NFProperties(
{
@NFProperty(ExecutionTimeProperty.class),
@NFProperty(WaitqueueProperty.class)
})
public IFuture test();
}