mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
10 lines
288 B
Java
10 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);
|
|
}
|