python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
ExecutorService analog in Kotlin
I have a piece of Java code that uses ExecutorService. I need to convert this code to Kotlin using coroutines. I tried using GlobalScope.launch() which did work but very differently. In Java code ther...
Klims
Votes: 0
Answers: 1
Callable in ExecutorService with shared data
I have a scenario which I have somehow simulated into the following:
I have a list of Callable tasks that are being executed in 4 threads. The execution should return a value(a Map<String, String&g...
Kushal Mondal
Votes: 0
Answers: 1
SingleThreadScheduledExecutor or Timer scheduleAtFixedRate but don't catch up?
Currently I'm using an Executors.newSingleThreadScheduledExecutor() to schedule a task periodically. The ScheduledExecutorService provides two options for this, namely:
ScheduledExecutorService#sched...
stonar96
Votes: 0
Answers: 1
How to pause and resume the loop after the child thread completes
Can you help me, I have a problem using thread in java. I have two for loops, parent loop and child loop (for loop). In the child loop I use a thread object and use ExecutorService to manage. But I wa...
Anh Tuan
Votes: 0
Answers: 1