org.jboss.threads.DelegatingScheduledExecutorService Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source.
* Copyright 2017 Red Hat, Inc., and individual contributors
* as indicated by the @author tags.
*
* 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 org.jboss.threads;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.Callable;
/**
* An implementation of {@code ScheduledExecutorService} that delegates to the real executor, while disallowing termination.
*/
class DelegatingScheduledExecutorService extends DelegatingExecutorService implements ScheduledExecutorService {
private final ScheduledExecutorService delegate;
DelegatingScheduledExecutorService(final ScheduledExecutorService delegate) {
super(delegate);
this.delegate = delegate;
}
public ScheduledFuture> schedule(final Runnable command, final long delay, final TimeUnit unit) {
return delegate.schedule(command, delay, unit);
}
public ScheduledFuture schedule(final Callable callable, final long delay, final TimeUnit unit) {
return delegate.schedule(callable, delay, unit);
}
public ScheduledFuture> scheduleAtFixedRate(final Runnable command, final long initialDelay, final long period, final TimeUnit unit) {
return delegate.scheduleAtFixedRate(command, initialDelay, period, unit);
}
public ScheduledFuture> scheduleWithFixedDelay(final Runnable command, final long initialDelay, final long delay, final TimeUnit unit) {
return delegate.scheduleWithFixedDelay(command, initialDelay, delay, unit);
}
}