Some semantic fixes to carriedexecutor

This commit is contained in:
DBotThePony 2024-02-14 12:38:30 +07:00
parent 021b991ab5
commit b76c4e6aa9
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 4 additions and 16 deletions

View File

@ -4,7 +4,7 @@ kotlin.code.style=official
specifyKotlinAsDependency=false
projectGroup=ru.dbotthepony.kommons
projectVersion=2.2.0
projectVersion=2.2.1
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9

View File

@ -21,7 +21,7 @@ import java.util.concurrent.locks.LockSupport
*/
class CarriedExecutor(private val parentExecutor: Executor) : Runnable, ExecutorService {
private val isCarried = AtomicBoolean()
private val queue = ConcurrentLinkedQueue<Runnable>()
private val queue = ConcurrentLinkedQueue<FutureTask<*>>()
private val isShutdown = AtomicBoolean()
private val isTerminated = AtomicBoolean()
@ -29,7 +29,7 @@ class CarriedExecutor(private val parentExecutor: Executor) : Runnable, Executor
if (isShutdown.get())
throw RejectedExecutionException("Shutdown initiated")
queue.add(command)
queue.add(FutureTask(command, Unit))
if (!isShutdown.get() && isCarried.compareAndSet(false, true))
parentExecutor.execute(this)
@ -51,6 +51,7 @@ class CarriedExecutor(private val parentExecutor: Executor) : Runnable, Executor
var next = queue.poll()
while (next != null) {
next.cancel(false)
tasks.add(next)
next = queue.poll()
}
@ -141,23 +142,10 @@ class CarriedExecutor(private val parentExecutor: Executor) : Runnable, Executor
}
override fun run() {
if (isShutdown.get()) {
shutdownNow()
isCarried.set(false)
return
}
var next = queue.poll()
while (next != null) {
next.run()
if (isShutdown.get()) {
shutdownNow()
isCarried.set(false)
return
}
next = queue.poll()
}