package androidx.work; import androidx.lifecycle.LiveData; import androidx.work.Operation; import com.google.common.util.concurrent.ListenableFuture; import kotlin.jvm.internal.Intrinsics; /* loaded from: classes.dex */ final class OperationImpl implements Operation { private final ListenableFuture future; private final LiveData state; @Override // androidx.work.Operation public ListenableFuture getResult() { return this.future; } @Override // androidx.work.Operation public LiveData getState() { return this.state; } public OperationImpl(LiveData state, ListenableFuture future) { Intrinsics.checkNotNullParameter(state, "state"); Intrinsics.checkNotNullParameter(future, "future"); this.state = state; this.future = future; } }