Initial import of ADIF API reverse-engineering toolkit

This commit is contained in:
2025-12-16 08:37:56 +01:00
commit 60388529c1
11486 changed files with 1086536 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
package com.google.firebase.concurrent;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
/* loaded from: classes3.dex */
final class PausableScheduledExecutorServiceImpl extends DelegatingScheduledExecutorService implements PausableScheduledExecutorService {
private final PausableExecutorService delegate;
public PausableScheduledExecutorServiceImpl(PausableExecutorService pausableExecutorService, ScheduledExecutorService scheduledExecutorService) {
super(pausableExecutorService, scheduledExecutorService);
this.delegate = pausableExecutorService;
}
@Override // com.google.firebase.concurrent.PausableExecutor
public boolean isPaused() {
return this.delegate.isPaused();
}
@Override // com.google.firebase.concurrent.PausableExecutor
public void pause() {
this.delegate.pause();
}
@Override // com.google.firebase.concurrent.PausableExecutor
public void resume() {
this.delegate.resume();
}
@Override // com.google.firebase.concurrent.DelegatingScheduledExecutorService, java.util.concurrent.ScheduledExecutorService
public ScheduledFuture<?> scheduleAtFixedRate(Runnable runnable, long j4, long j5, TimeUnit timeUnit) {
throw new UnsupportedOperationException();
}
@Override // com.google.firebase.concurrent.DelegatingScheduledExecutorService, java.util.concurrent.ScheduledExecutorService
public ScheduledFuture<?> scheduleWithFixedDelay(Runnable runnable, long j4, long j5, TimeUnit timeUnit) {
throw new UnsupportedOperationException();
}
}