aboutsummaryrefslogtreecommitdiff
path: root/utils/nonPooledThread.js
diff options
context:
space:
mode:
Diffstat (limited to 'utils/nonPooledThread.js')
-rw-r--r--utils/nonPooledThread.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/utils/nonPooledThread.js b/utils/nonPooledThread.js
deleted file mode 100644
index 4720700..0000000
--- a/utils/nonPooledThread.js
+++ /dev/null
@@ -1,14 +0,0 @@
-let Executors = Java.type("java.util.concurrent.Executors")
-
-class NonPooledThread {
- constructor(fun) {
- this.fun = fun
- this.executor = Executors.newSingleThreadExecutor()
- }
-
- start() {
- this.executor.execute(this.fun)
- }
-}
-
-export default NonPooledThread \ No newline at end of file