/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.threads; import java.util.concurrent.Callable; import java.util.concurrent.ExecutorService; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.ScheduledFuture; import java.util.concurrent.ScheduledThreadPoolExecutor; import java.util.concurrent.TimeUnit; import org.jboss.threads.JBossExecutors; /** * * @author Alexey Loubyansky */ public class ManagedScheduledExecutorService extends ManagedExecutorService implements ScheduledExecutorService { private final ScheduledThreadPoolExecutor executor; public ManagedScheduledExecutorService(ScheduledThreadPoolExecutor executor) { super(executor); this.executor = executor; } @Override protected ExecutorService protectExecutor(ExecutorService executor) { return JBossExecutors.protectedScheduledExecutorService((ScheduledExecutorService) executor); } @Override void internalShutdown() { executor.shutdown(); } @Override public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { return executor.schedule(command, delay, unit); } @Override public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { return executor.schedule(callable, delay, unit); } @Override public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) { return executor.scheduleAtFixedRate(command, initialDelay, period, unit); } @Override public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) { return executor.scheduleWithFixedDelay(command, initialDelay, delay, unit); } public int getActiveCount() { return executor.getActiveCount(); } public long getCompletedTaskCount() { return executor.getCompletedTaskCount(); } public int getLargestPoolSize() { return executor.getLargestPoolSize(); } public int getPoolSize() { return executor.getPoolSize(); } public long getTaskCount() { return executor.getTaskCount(); } public int getQueueSize() { return executor.getQueue().size(); } }