<!ELEMENT extension (handler)+>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT handler EMPTY>
<!ATTLIST handler
chatRoomRobotId CDATA #REQUIRED
filterExpression CDATA #IMPLIED
class CDATA #REQUIRED>
The chat room message handler
<extension point="org.eclipse.ecf.presence.bot.chatRoomMessageHandler"> <handler chatRoomRobotId="org.eclipse.ecf.presence.bot.defaultbot" class="org.eclipse.ecf.presence.bot.DefaultChatRoomMessageHandler"> </handler> </extension>Note that the given chatroomrobotid=org.eclipse.ecf.presence.bot.defaultbot must be previously defined via the chatroomrobot extension point. Here is an example:
<extension point="org.eclipse.ecf.presence.bot.chatRoomRobot"> <chatRoomRobot chat chatRoom="#eclipse-ecf" connectId="irc://slewis2_@irc.freenode.net" containerFactoryName="ecf.irc.irclib" id="org.eclipse.ecf.presence.bot.defaultbot"> </chatRoomRobot> </extension>
public interface IChatRoomMessageHandler extends IChatRoomContainerAdvisor {
/**
* This method is called when a {@link IChatRoomMessage} is received.
*
* @param message
* the {@link IChatRoomMessage} received. Will not be
* <code>null</code>. Implementers should not block the
* calling thread. Any methods on the given <code>message</code>
* parameter may be called.
*/
public void handleRoomMessage(IChatRoomMessage message);
}
Copyright (c) 2007 IBM Corporation and others. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0