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

30
LINES

< > BotCompany Repo | #1017613 // botAppendToMechList_combining - coalesces transfers to avoid spam marker (OK)

JavaX fragment (include)

scope botAppendToMechList_combining.

static SS #untransmitted = synchroMap();
static ReliableSingleThread #rst;
static int #delay = 2000;

svoid botAppendToMechList_combining(S name, S text) {
  if (emptyAfterTrim(text)) ret;
  
  synchronized(untransmitted) {
    S s = untransmitted.get(name);
    untransmitted.put(name, appendNewLineIfNempty(s) + text);
    if (rst == null) rst = rstWithDelay(#delay, r #upload);
  }
  
  rst.trigger();
}

svoid #upload() {
  SS data = cloneAndClearMap(untransmitted);
  for (S name, text : data) {
    botAppendToMechList_now(name, text);
  }
}

svoid cleanMeUp_botAppendToMechList_combining {
  while (rst != null && rst.running()) sleep(10);
}

end scope

Author comment

Began life as a copy of #1014094

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1017613
Snippet name: botAppendToMechList_combining - coalesces transfers to avoid spam marker (OK)
Eternal ID of this version: #1017613/5
Text MD5: 053af0b12ad554c1e93ce67ec6e1f872
Author: stefan
Category: javax / a.i.
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-07-30 14:27:48
Source code size: 726 bytes / 30 lines
Pitched / IR pitched: No / No
Views / Downloads: 267 / 305
Version history: 4 change(s)
Referenced in: [show references]