mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
29 lines
896 B
Java
29 lines
896 B
Java
package com.google.common.util.concurrent;
|
|
|
|
import com.google.common.util.concurrent.AbstractFuture;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes3.dex */
|
|
public final class SettableFuture<V> extends AbstractFuture.TrustedFuture<V> {
|
|
public static <V> SettableFuture<V> create() {
|
|
return new SettableFuture<>();
|
|
}
|
|
|
|
@Override // com.google.common.util.concurrent.AbstractFuture
|
|
public boolean set(@ParametricNullness V v) {
|
|
return super.set(v);
|
|
}
|
|
|
|
@Override // com.google.common.util.concurrent.AbstractFuture
|
|
public boolean setException(Throwable th) {
|
|
return super.setException(th);
|
|
}
|
|
|
|
@Override // com.google.common.util.concurrent.AbstractFuture
|
|
public boolean setFuture(ListenableFuture<? extends V> listenableFuture) {
|
|
return super.setFuture(listenableFuture);
|
|
}
|
|
|
|
private SettableFuture() {
|
|
}
|
|
}
|