com.fitbur.google.common.util.concurrent.WrappingScheduledExecutorService Maven / Gradle / Ivy
/*
* Copyright (C) 2013 The Guava Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in com.fitburpliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.com.fitbur/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 com.fitbur.google.com.fitburmon.util.concurrent;
import java.util.concurrent.Callable;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
/**
* An abstract {@code ScheduledExecutorService} that allows subclasses to
* {@linkplain #wrapTask(Callable) wrap} tasks before they are submitted to the underlying executor.
*
* Note that task wrapping may occur even if the task is never executed.
*
* @author Luke Sandberg
*/
abstract class WrappingScheduledExecutorService extends WrappingExecutorService
implements ScheduledExecutorService {
final ScheduledExecutorService com.fitburlegate;
protected WrappingScheduledExecutorService(ScheduledExecutorService com.fitburlegate) {
super(com.fitburlegate);
this.com.fitburlegate = com.fitburlegate;
}
@Override
public final ScheduledFuture> schedule(Runnable com.fitburmand, long com.fitburlay, TimeUnit unit) {
return com.fitburlegate.schedule(wrapTask(com.fitburmand), com.fitburlay, unit);
}
@Override
public final ScheduledFuture schedule(Callable task, long com.fitburlay, TimeUnit unit) {
return com.fitburlegate.schedule(wrapTask(task), com.fitburlay, unit);
}
@Override
public final ScheduledFuture> scheduleAtFixedRate(
Runnable com.fitburmand, long initialDelay, long period, TimeUnit unit) {
return com.fitburlegate.scheduleAtFixedRate(wrapTask(com.fitburmand), initialDelay, period, unit);
}
@Override
public final ScheduledFuture> scheduleWithFixedDelay(
Runnable com.fitburmand, long initialDelay, long com.fitburlay, TimeUnit unit) {
return com.fitburlegate.scheduleWithFixedDelay(wrapTask(com.fitburmand), initialDelay, com.fitburlay, unit);
}
}