final class com.google.common.util.concurrent.AbstractScheduledService$FutureAsCancellable extends java.lang.Object implements com.google.common.util.concurrent.AbstractScheduledService$Cancellable
{
private final java.util.concurrent.Future delegate;
void <init>(java.util.concurrent.Future)
{
java.util.concurrent.Future v;
com.google.common.util.concurrent.AbstractScheduledService$FutureAsCancellable v;
v := @this: com.google.common.util.concurrent.AbstractScheduledService$FutureAsCancellable;
v := @parameter: java.util.concurrent.Future;
specialinvoke v.<java.lang.Object: void <init>()>();
v.<com.google.common.util.concurrent.AbstractScheduledService$FutureAsCancellable: java.util.concurrent.Future delegate> = v;
return;
}
public void cancel(boolean)
{
java.util.concurrent.Future v;
com.google.common.util.concurrent.AbstractScheduledService$FutureAsCancellable v;
boolean v;
v := @this: com.google.common.util.concurrent.AbstractScheduledService$FutureAsCancellable;
v := @parameter: boolean;
v = v.<com.google.common.util.concurrent.AbstractScheduledService$FutureAsCancellable: java.util.concurrent.Future delegate>;
interfaceinvoke v.<java.util.concurrent.Future: boolean cancel(boolean)>(v);
return;
}
public boolean isCancelled()
{
java.util.concurrent.Future v;
com.google.common.util.concurrent.AbstractScheduledService$FutureAsCancellable v;
boolean v;
v := @this: com.google.common.util.concurrent.AbstractScheduledService$FutureAsCancellable;
v = v.<com.google.common.util.concurrent.AbstractScheduledService$FutureAsCancellable: java.util.concurrent.Future delegate>;
v = interfaceinvoke v.<java.util.concurrent.Future: boolean isCancelled()>();
return v;
}
}