package com.google.android.gms.internal.ads;

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

/* JADX INFO: loaded from: classes2.dex */
public final class kv1 extends a30 implements ev1 {

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

    public kv1(ScheduledExecutorService scheduledExecutorService) {
        super((ExecutorService) scheduledExecutorService);
        this.f13414c = scheduledExecutorService;
    }

    @Override // java.util.concurrent.ScheduledExecutorService
    public final ScheduledFuture schedule(Runnable runnable, long j10, TimeUnit timeUnit) {
        ov1 ov1Var = new ov1(Executors.callable(runnable, null));
        return new iv1(ov1Var, this.f13414c.schedule(ov1Var, j10, timeUnit));
    }

    @Override // java.util.concurrent.ScheduledExecutorService
    public final ScheduledFuture scheduleAtFixedRate(Runnable runnable, long j10, long j11, TimeUnit timeUnit) {
        jv1 jv1Var = new jv1(runnable);
        return new iv1(jv1Var, this.f13414c.scheduleAtFixedRate(jv1Var, j10, j11, timeUnit));
    }

    @Override // java.util.concurrent.ScheduledExecutorService
    public final ScheduledFuture scheduleWithFixedDelay(Runnable runnable, long j10, long j11, TimeUnit timeUnit) {
        jv1 jv1Var = new jv1(runnable);
        return new iv1(jv1Var, this.f13414c.scheduleWithFixedDelay(jv1Var, j10, j11, timeUnit));
    }

    @Override // java.util.concurrent.ScheduledExecutorService
    public final ScheduledFuture schedule(Callable callable, long j10, TimeUnit timeUnit) {
        ov1 ov1Var = new ov1(callable);
        return new iv1(ov1Var, this.f13414c.schedule(ov1Var, j10, timeUnit));
    }
}
