package J3;

import java.util.concurrent.Callable;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;

/* JADX INFO: loaded from: classes3.dex */
public final class B extends y implements ScheduledExecutorService {

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    public final ScheduledExecutorService f3497b;

    public B(ScheduledExecutorService scheduledExecutorService) {
        super(scheduledExecutorService);
        this.f3497b = scheduledExecutorService;
    }

    @Override // java.util.concurrent.ScheduledExecutorService
    public final ScheduledFuture schedule(Callable callable, long j4, TimeUnit timeUnit) {
        F f6 = new F(callable);
        return new z(f6, this.f3497b.schedule(f6, j4, timeUnit));
    }

    @Override // java.util.concurrent.ScheduledExecutorService
    public final ScheduledFuture scheduleAtFixedRate(Runnable runnable, long j4, long j6, TimeUnit timeUnit) {
        A a6 = new A(runnable);
        return new z(a6, this.f3497b.scheduleAtFixedRate(a6, j4, j6, timeUnit));
    }

    @Override // java.util.concurrent.ScheduledExecutorService
    public final ScheduledFuture scheduleWithFixedDelay(Runnable runnable, long j4, long j6, TimeUnit timeUnit) {
        A a6 = new A(runnable);
        return new z(a6, this.f3497b.scheduleWithFixedDelay(a6, j4, j6, timeUnit));
    }

    @Override // java.util.concurrent.ScheduledExecutorService
    public final ScheduledFuture schedule(Runnable runnable, long j4, TimeUnit timeUnit) {
        F f6 = new F(Executors.callable(runnable, null));
        return new z(f6, this.f3497b.schedule(f6, j4, timeUnit));
    }
}
