
ibt.ortc.extensibility.EventEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of messaging Show documentation
Show all versions of messaging Show documentation
Realtime Cloud Messaging (ORTC) SDK for Java
/**
* @fileoverview This file contains the Ortc events
* @author ORTC team members ([email protected])
*/
package ibt.ortc.extensibility;
/**
* Enumerates the existent Ortc events.
*
* @version 2.1.0 27 Mar 2013 2012
* @author IBT
*/
public enum EventEnum {
/**
* Fired when a connection is established
*/
OnConnected,
/**
* Fired when a connection is closed
*/
OnDisconnected,
/**
* Fired when a exception occurs
*/
OnException,
/**
* Fired when a connection is reestablished after being closed unexpectedly
*/
OnReconnected,
/**
* Fired when a connection is trying to be reestablished after being closed unexpectedly
*/
OnReconnecting,
/**
* Fired when a channel is subscribed
*/
OnSubscribed,
/**
* Fired when a channel is unsubscribed
*/
OnUnsubscribed,
/**
* Fired when a message is received
*/
OnReceived,
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy