devbury.threadscope.ThreadScopePropagatingScheduler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-threadscope Show documentation
Show all versions of spring-boot-starter-threadscope Show documentation
Thread scope that supports asynchronous threads and bean destruction callbacks
The newest version!
/*
* Copyright 2015 devbury LLC
*
* 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 devbury.threadscope;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.jmx.export.annotation.ManagedAttribute;
import org.springframework.jmx.export.annotation.ManagedResource;
import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
import java.util.concurrent.*;
@ManagedResource
public class ThreadScopePropagatingScheduler extends ThreadPoolTaskScheduler {
private static final Logger LOGGER = LoggerFactory.getLogger(ThreadScopePropagatingScheduler.class);
private final ThreadScopeManager threadScopeManager;
public ThreadScopePropagatingScheduler(ThreadScopeManager threadScopeManager) {
this.threadScopeManager = threadScopeManager;
}
@Override
@ManagedAttribute
public int getActiveCount() {
return super.getActiveCount();
}
@Override
@ManagedAttribute
public int getPoolSize() {
return super.getPoolSize();
}
@Override
@ManagedAttribute
public void setPoolSize(int poolSize) {
super.setPoolSize(poolSize);
}
@Override
protected ScheduledExecutorService createExecutor(int poolSize, ThreadFactory threadFactory,
RejectedExecutionHandler rejectedExecutionHandler) {
return new ScheduledThreadPoolExecutor(poolSize, threadFactory, rejectedExecutionHandler) {
@Override
protected RunnableScheduledFuture decorateTask(Callable callable, RunnableScheduledFuture
task) {
LOGGER.debug("Decorating Task");
return buildRunnableScheduledFuture(threadScopeManager, task);
}
@Override
protected RunnableScheduledFuture decorateTask(Runnable runnable, RunnableScheduledFuture task) {
return decorateTask((Callable) null, task);
}
};
}
protected RunnableScheduledFuture buildRunnableScheduledFuture(ThreadScopeManager threadScopeManager,
RunnableScheduledFuture task) {
return new ThreadScopeRunnableScheduledFuture<>(threadScopeManager, task);
}
}