Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

20
LINES

< > BotCompany Repo | #1001322 // sendToLocalBotOpt

JavaX fragment (include)

static S sendToLocalBotOpt(S bot, S text, O... args) {
  if (bot == null) return null;
  text = format(text, args);
  temp DialogIO channel = findBot(bot);
  if (channel == null) {
    print(quote(bot) + " not found, skipping send: " + quote(text));
    null;
  }
  try {
    channel.readLine();
    print(shorten(bot + "> " + text, 200));
    channel.sendLine(text);
    S s = channel.readLine();
    print(shorten(bot + "< " + s, 200));
    return s;
  } catch (Throwable e) {
    e.printStackTrace();
    return null;
  }
}

download  show line numbers  debug dex  old transpilations   

Travelled to 14 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1001322
Snippet name: sendToLocalBotOpt
Eternal ID of this version: #1001322/2
Text MD5: 8a8a90d69e477089fcf50d3e9d227b13
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2019-07-13 22:40:02
Source code size: 545 bytes / 20 lines
Pitched / IR pitched: No / No
Views / Downloads: 683 / 2472
Version history: 1 change(s)
Referenced in: [show references]