private final ExceptionTrackingListener exceptionListener;
private final ThreadLocal<Runnable> executing = new ThreadLocal<Runnable>();
public StoppableExecutorImpl(ExecutorService executor) {
this.executor = executor;
exceptionListener = new ExceptionTrackingListener(Logging.getLogger(StoppableExecutorImpl.class));
}