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

jadex.micro.tutorial.a6.IChatService Maven / Gradle / Ivy

The newest version!
package jadex.micro.tutorial.a6;

import jadex.providedservice.annotation.Service;

/**
 *  The chat service interface.
 */
@Service
public interface IChatService
{
	/**
	 *  Receives a chat message.
	 *  @param sender The sender's name.
	 *  @param text The message text.
	 */
	public void message(String sender, String text);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy