Rabbit-R1/android (non root)/java/sources/com/google/common/util/concurrent/AsyncFunction.java

8 lines
223 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
package com.google.common.util.concurrent;
@ElementTypesAreNonnullByDefault
/* loaded from: classes3.dex */
public interface AsyncFunction<I, O> {
ListenableFuture<O> apply(@ParametricNullness I i) throws Exception;
}