jadex.micro.testcases.semiautomatic.compositeservice.UserAgent 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.semiautomatic.compositeservice;
import jadex.bridge.IInternalAccess;
import jadex.bridge.service.component.IRequiredServicesFeature;
import jadex.commons.future.DefaultResultListener;
import jadex.commons.future.Future;
import jadex.commons.future.IFuture;
import jadex.commons.future.IResultListener;
import jadex.micro.annotation.Agent;
import jadex.micro.annotation.AgentBody;
import jadex.micro.annotation.Binding;
import jadex.micro.annotation.Description;
import jadex.micro.annotation.RequiredService;
import jadex.micro.annotation.RequiredServices;
/**
* The user agent uses services for testing them.
*/
@Description("This agent uses an add service.")
@RequiredServices(@RequiredService(name="addservice", type=IAddService.class, binding=@Binding(scope=Binding.SCOPE_PLATFORM)))
@Agent
public class UserAgent
{
@Agent
protected IInternalAccess agent;
/**
* Execute the functional body of the agent.
* Is only called once.
*/
@AgentBody
public IFuture executeBody()
{
agent.getComponentFeature(IRequiredServicesFeature.class).getRequiredService("addservice").addResultListener(new DefaultResultListener()
{
public void resultAvailable(Object result)
{
IAddService addser = (IAddService)result;
addser.add(1, 1).addResultListener(new IResultListener()
{
public void resultAvailable(Object result)
{
System.out.println("add service result: "+result+" "+agent.getComponentIdentifier().getLocalName());
}
public void exceptionOccurred(Exception exception)
{
System.out.println("invocation failed: "+exception);
}
});
}
});
return new Future(); // never kill?!
}
//-------- static methods --------
// /**
// * Get the meta information about the agent.
// */
// public static MicroAgentMetaInfo getMetaInfo()
// {
// return new MicroAgentMetaInfo("This agent uses an add service.", null,
// new IArgument[]{}, null, null, SUtil.createHashMap(new String[]{"componentviewer.viewerclass"}, new Object[]{"jadex.micro.examples.chat.ChatPanel"}),
// new RequiredServiceInfo[]{new RequiredServiceInfo("addservice", IAddService.class)}, new ProvidedServiceInfo[]{new ProvidedServiceInfo(IChatService.class)});
// }
}