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

jadex.bdiv3x.features.IInternalBDIXMessageFeature Maven / Gradle / Ivy

Go to download

BDIV3 Kernel that supports annotated POJOs and uses byte code manipulation for performance improvements.

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