Search in sources :

Example 1 with CompletedFPBot

use of won.bot.framework.eventbot.listener.baStateBots.baCCMessagingBots.atomicBots.coordinationMessageAsTextBot.CompletedFPBot in project webofneeds by researchstudio-sat.

the class BAAtomicCCAdditionalParticipants method getFirstPhaseScripts.

protected List<BATestBotScript> getFirstPhaseScripts() {
    List<BATestBotScript> scripts = new ArrayList<BATestBotScript>(2);
    // Coordination message is sent as TEXT
    scripts.add(new CompletedFPBot());
    scripts.add(new CompletedFPBot());
    return scripts;
}
Also used : ArrayList(java.util.ArrayList) CompletedFPBot(won.bot.framework.eventbot.listener.baStateBots.baCCMessagingBots.atomicBots.coordinationMessageAsTextBot.CompletedFPBot) BATestBotScript(won.bot.framework.eventbot.listener.baStateBots.BATestBotScript)

Example 2 with CompletedFPBot

use of won.bot.framework.eventbot.listener.baStateBots.baCCMessagingBots.atomicBots.coordinationMessageAsTextBot.CompletedFPBot in project webofneeds by researchstudio-sat.

the class BAAtomicCCAdditionalParticipants method getFirstPhaseScriptsWithDelay.

protected List<BATestBotScript> getFirstPhaseScriptsWithDelay() {
    List<BATestBotScript> scripts = new ArrayList<BATestBotScript>(2);
    scripts.add(new CompletedFPBot());
    scripts.add(new CompletedFPBot());
    return scripts;
}
Also used : ArrayList(java.util.ArrayList) CompletedFPBot(won.bot.framework.eventbot.listener.baStateBots.baCCMessagingBots.atomicBots.coordinationMessageAsTextBot.CompletedFPBot) BATestBotScript(won.bot.framework.eventbot.listener.baStateBots.BATestBotScript)

Aggregations

ArrayList (java.util.ArrayList)2 BATestBotScript (won.bot.framework.eventbot.listener.baStateBots.BATestBotScript)2 CompletedFPBot (won.bot.framework.eventbot.listener.baStateBots.baCCMessagingBots.atomicBots.coordinationMessageAsTextBot.CompletedFPBot)2