Rabbit-R1/android (non root)/java/sources/com/google/common/util/concurrent/AsyncCallable.java
2024-05-21 17:08:36 -04:00

7 lines
196 B
Java

package com.google.common.util.concurrent;
@ElementTypesAreNonnullByDefault
/* loaded from: classes3.dex */
public interface AsyncCallable<V> {
ListenableFuture<V> call() throws Exception;
}