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

org.artifact.actor.Message Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package org.artifact.actor;

/**
 * A message between actors.
 * 
 * @author BFEIGENB
 *
 */
public interface Message {
	/** Get the sender of the message. */
	Actor getSource();

	/** Get the subject (AKA command) of the message. */
	String getSubject();

	/** Get any parameter data associated with the message. */
	Object getData();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy