jadex.base.service.awareness.discovery.message.IMessageAwarenessService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-platform-base Show documentation
Show all versions of jadex-platform-base Show documentation
The Jadex platform base package contains
functionality useful for constructing platforms.
The newest version!
package jadex.base.service.awareness.discovery.message;
import jadex.bridge.IComponentIdentifier;
import jadex.commons.future.IFuture;
/**
* Discovery service called when a message is received.
*/
public interface IMessageAwarenessService
{
/**
* Announce a potentially new component identifier.
* @param cid The component identifier.
*/
public IFuture announceComponentIdentifier(IComponentIdentifier cid);
}