Libraryless. Click here for Pure Java version (5438L/30K).
sclass SingleThread { bool running; Thread thread; void run(O r) { go(r); } synchronized bool go(final O runnable) { if (running) false; running = true; thread = startThread("Single Thread", r { try { callF(runnable); } finally { _done(); } }); true; } synchronized void _done() { running = false; thread = null; } synchronized bool running() { ret running; } synchronized Thread getThread() { ret thread; } }
download show line numbers debug dex old transpilations
Travelled to 17 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, ddnzoavkxhuk, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, sawdedvomwva, tslmcundralx, tvejysmllsmz, vouqrxazstgt, wtqryiryparv
No comments. add comment
Snippet ID: | #1004705 |
Snippet name: | class SingleThread - drops triggers when it's already running one |
Eternal ID of this version: | #1004705/4 |
Text MD5: | ecdea2e3503230ca11bf00c3180dfdb8 |
Transpilation MD5: | 4f794a8d125adcbee07f67c5c78bf7e4 |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2022-03-13 04:23:15 |
Source code size: | 531 bytes / 28 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 820 / 3211 |
Version history: | 3 change(s) |
Referenced in: | #1006319 - class ReliableSingleThread - triggers again reliably when one step is already running #1034167 - Standard Classes + Interfaces (LIVE, continuation of #1003674) |