what-the-bank/sources/com/google/common/util/concurrent/AsyncCallable.java

7 lines
163 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.common.util.concurrent;
/* loaded from: classes2.dex */
public interface AsyncCallable<V> {
ListenableFuture<V> call() throws Exception;
}