handleOperatorsOnline()

This event handler can be used to invoke a method when the operators are online(method will be invoked right after the webpage loads).

Syntax:

CopiedhandleOperatorsOnline()

Example:

Copiedpublic class ChatInterface implements ChatActivityInterface {

	@Override
	public void handleOperatorsOnline() {
	// Operators are online
	}
}