mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
11 lines
288 B
Java
11 lines
288 B
Java
|
package androidx.work;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import com.google.common.util.concurrent.ListenableFuture;
|
||
|
import java.util.UUID;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public interface ProgressUpdater {
|
||
|
ListenableFuture<Void> updateProgress(Context context, UUID id, Data data);
|
||
|
}
|