Package org.eclipse.ecf.presence.bot.impl

Examples of org.eclipse.ecf.presence.bot.impl.ChatRoomBot


    Map bots = getBotsFromExtensionRegistry();

    for (Iterator it = bots.values().iterator(); it.hasNext();) {
      IChatRoomBotEntry entry = (IChatRoomBotEntry) it.next();
      // Create default chat room bot
      ChatRoomBot bot = new ChatRoomBot(entry);
      // connect
      bot.connect();
    }

    while (true) {
      try {
        Thread.sleep(100);
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.presence.bot.impl.ChatRoomBot

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.