io.fabric8.kubernetes.client.utils.internal.SerialExecutor Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2015 Red Hat, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.fabric8.kubernetes.client.utils.internal;
import java.util.Queue;
import java.util.concurrent.Executor;
import java.util.concurrent.LinkedBlockingDeque;
import java.util.concurrent.RejectedExecutionException;
/**
* See {@link Executor} docs
*
*
* Effectively creates a derived single thread executor, runnable tasks are executed in the order they are added.
* This is a replacement for Executors.newSingleThreadExecutor() that uses threads in a non-dedicated way
*
* Added shutdown support
*/
public class SerialExecutor implements Executor {
final Queue tasks = new LinkedBlockingDeque<>();
final Executor executor;
Runnable active;
private volatile boolean shutdown;
private Thread thread;
private final Object threadLock = new Object();
public SerialExecutor(Executor executor) {
this.executor = executor;
}
@Override
public synchronized void execute(final Runnable r) {
if (shutdown) {
throw new RejectedExecutionException();
}
tasks.offer(() -> {
try {
if (shutdown) {
return;
}
synchronized (threadLock) {
thread = Thread.currentThread();
}
r.run();
} catch (Throwable t) {
thread.getUncaughtExceptionHandler().uncaughtException(thread, t);
} finally {
synchronized (threadLock) {
thread = null;
}
Thread.interrupted();
scheduleNext();
}
});
if (active == null) {
scheduleNext();
}
}
protected synchronized void scheduleNext() {
if ((active = tasks.poll()) != null) {
executor.execute(active);
}
}
/**
* Shutdown the executor without executing any more tasks.
*
* The the current task will be interrupting if it is not the thread that initiated the shutdown.
*/
public void shutdownNow() {
this.shutdown = true;
tasks.clear();
synchronized (threadLock) {
if (thread != null && thread != Thread.currentThread()) {
thread.interrupt();
}
}
}
public boolean isShutdown() {
return shutdown;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy