jadex.micro.examples.helpline.IHelpline 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.helpline;
import jadex.commons.future.IIntermediateFuture;
/**
* Basic interface for helpline.
* Allows to get local information about a person and
* add information about a person.
*/
public interface IHelpline
{
/**
* Get all locally stored information about a person.
* @param name The person's name.
* @return Future that contains all information records as collection.
*/
public IIntermediateFuture getInformation(String name);
/**
* Add an information about a person.
* @param name The person's name.
* @param info The information.
*/
public void addInformation(String name, String info);
}