![JAR search and dependency download from the Maven repository](/logo.png)
jadex.micro.tutorial.a1.IChatService Maven / Gradle / Ivy
The newest version!
package jadex.micro.tutorial.a1;
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