![JAR search and dependency download from the Maven repository](/logo.png)
jadex.micro.taskdistributor.Main Maven / Gradle / Ivy
package jadex.micro.taskdistributor;
import jadex.core.IComponent;
/**
* Main for starting a test scenario.
*/
public class Main
{
public static void main(String[] args)
{
IComponent.create(new TaskDistributorAgent());
IComponent.create(new TaskCreatorAgent(1));
IComponent.create(new TaskCreatorAgent(1));
IComponent.create(new TaskCreatorAgent(3));
IComponent.create(new TaskWorkerAgent());
IComponent.create(new TaskWorkerAgent());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy