Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,66 @@
|
||||
package com.google.android.gms.common.api.internal;
|
||||
|
||||
import com.google.android.gms.common.api.PendingResult;
|
||||
import com.google.android.gms.common.api.Result;
|
||||
import com.google.android.gms.common.api.ResultCallback;
|
||||
import com.google.android.gms.common.api.ResultTransform;
|
||||
import com.google.android.gms.common.api.Status;
|
||||
import com.google.android.gms.common.api.TransformedResult;
|
||||
import com.google.android.gms.common.internal.Preconditions;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class zacp<R extends Result> extends PendingResult<R> {
|
||||
private final Status zaa;
|
||||
|
||||
public zacp(Status status) {
|
||||
Preconditions.checkNotNull(status, "Status must not be null");
|
||||
Preconditions.checkArgument(!status.isSuccess(), "Status must not be success");
|
||||
this.zaa = status;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.common.api.PendingResult
|
||||
public final void addStatusListener(PendingResult.StatusListener statusListener) {
|
||||
throw new UnsupportedOperationException("Operation not supported on PendingResults generated by ResultTransform.createFailedResult()");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.common.api.PendingResult
|
||||
public final R await() {
|
||||
throw new UnsupportedOperationException("Operation not supported on PendingResults generated by ResultTransform.createFailedResult()");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.common.api.PendingResult
|
||||
public final void cancel() {
|
||||
throw new UnsupportedOperationException("Operation not supported on PendingResults generated by ResultTransform.createFailedResult()");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.common.api.PendingResult
|
||||
public final boolean isCanceled() {
|
||||
throw new UnsupportedOperationException("Operation not supported on PendingResults generated by ResultTransform.createFailedResult()");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.common.api.PendingResult
|
||||
public final void setResultCallback(ResultCallback<? super R> resultCallback) {
|
||||
throw new UnsupportedOperationException("Operation not supported on PendingResults generated by ResultTransform.createFailedResult()");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.common.api.PendingResult
|
||||
public final <S extends Result> TransformedResult<S> then(ResultTransform<? super R, ? extends S> resultTransform) {
|
||||
throw new UnsupportedOperationException("Operation not supported on PendingResults generated by ResultTransform.createFailedResult()");
|
||||
}
|
||||
|
||||
final Status zaa() {
|
||||
return this.zaa;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.common.api.PendingResult
|
||||
public final R await(long j, TimeUnit timeUnit) {
|
||||
throw new UnsupportedOperationException("Operation not supported on PendingResults generated by ResultTransform.createFailedResult()");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.common.api.PendingResult
|
||||
public final void setResultCallback(ResultCallback<? super R> resultCallback, long j, TimeUnit timeUnit) {
|
||||
throw new UnsupportedOperationException("Operation not supported on PendingResults generated by ResultTransform.createFailedResult()");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user