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

ibt.ortc.extensibility.OnMessage Maven / Gradle / Ivy

There is a newer version: 2.1.44
Show newest version
/**
 * @fileoverview This file contains the definition of the on message event interface
 * @author ORTC team members ([email protected]) 
 */
package ibt.ortc.extensibility;

/**
 * Represents the Ortc event when a message was received in the specified channel
 *  
 * @version 2.1.0 27 Mar 2013 2012
 * @author IBT
 *
 */
public interface OnMessage {
	/**
	 * Fired when a message was received in the specified channel
	 * @param sender Ortc client instance that fired the event
	 * @param channel Channel where the message was received
	 * @param message Content of the received message
	 */
	public void run(OrtcClient sender, String channel, String message);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy