mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 00:52:31 -06:00
36 lines
1.3 KiB
Java
36 lines
1.3 KiB
Java
package androidx.work.impl;
|
|
|
|
import androidx.lifecycle.LiveData;
|
|
import androidx.lifecycle.MutableLiveData;
|
|
import androidx.work.Operation;
|
|
import androidx.work.impl.utils.futures.SettableFuture;
|
|
import com.google.common.util.concurrent.ListenableFuture;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class OperationImpl implements Operation {
|
|
private final MutableLiveData<Operation.State> mOperationState = new MutableLiveData<>();
|
|
private final SettableFuture<Operation.State.SUCCESS> mOperationFuture = SettableFuture.create();
|
|
|
|
@Override // androidx.work.Operation
|
|
public ListenableFuture<Operation.State.SUCCESS> getResult() {
|
|
return this.mOperationFuture;
|
|
}
|
|
|
|
@Override // androidx.work.Operation
|
|
public LiveData<Operation.State> getState() {
|
|
return this.mOperationState;
|
|
}
|
|
|
|
public OperationImpl() {
|
|
markState(Operation.IN_PROGRESS);
|
|
}
|
|
|
|
public void markState(Operation.State state) {
|
|
this.mOperationState.postValue(state);
|
|
if (state instanceof Operation.State.SUCCESS) {
|
|
this.mOperationFuture.set((Operation.State.SUCCESS) state);
|
|
} else if (state instanceof Operation.State.FAILURE) {
|
|
this.mOperationFuture.setException(((Operation.State.FAILURE) state).getThrowable());
|
|
}
|
|
}
|
|
}
|