jadex.bdiv3x.features.IInternalBDIXMessageFeature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-kernel-bdiv3 Show documentation
Show all versions of jadex-kernel-bdiv3 Show documentation
BDIV3 Kernel that supports annotated POJOs and uses byte code manipulation for performance improvements.
package jadex.bdiv3x.features;
import jadex.bdiv3x.runtime.RMessageEvent;
/**
* Allow (de-)registering messages for capabilities.
*/
public interface IInternalBDIXMessageFeature
{
/**
* Register a conversation or reply-with to be able
* to send back answers to the source capability.
* @param msgevent The message event.
*/
public void registerMessageEvent(RMessageEvent msgevent);
/**
* Deregister a conversation or reply-with.
* @param msgevent The message event.
*/
public void deregisterMessageEvent(RMessageEvent msgevent);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy