All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jadex.micro.examples.helpline.IHelpline Maven / Gradle / Ivy

Go to download

The Jadex micro applications package contains several example applications, benchmarks and testcases using micro agents.

There is a newer version: 4.0.267
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy