1 | static S sendToLocalBotOpt(S bot, S text, O... args) {
|
2 | if (bot == null) return null; |
3 | text = format(text, args); |
4 | temp DialogIO channel = findBot(bot); |
5 | if (channel == null) {
|
6 | print(quote(bot) + " not found, skipping send: " + quote(text)); |
7 | null; |
8 | } |
9 | try {
|
10 | channel.readLine(); |
11 | print(shorten(bot + "> " + text, 200)); |
12 | channel.sendLine(text); |
13 | S s = channel.readLine(); |
14 | print(shorten(bot + "< " + s, 200)); |
15 | return s; |
16 | } catch (Throwable e) {
|
17 | e.printStackTrace(); |
18 | return null; |
19 | } |
20 | } |
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: | 1045 / 2849 |
| Version history: | 1 change(s) |
| Referenced in: | [show references] |