Class RunnableFutureTask<R,E extends Exception>
- java.lang.Object
-
- com.google.android.exoplayer2.util.RunnableFutureTask<R,E>
-
- Type Parameters:
R- The type of the result.E- The type of anyExecutionExceptioncause.
- All Implemented Interfaces:
Runnable,Future<R>,RunnableFuture<R>
@Deprecated public abstract class RunnableFutureTask<R,E extends Exception> extends Object implements RunnableFuture<R>
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.ARunnableFuturethat supports additional uninterruptible operations to query whether execution has started and finished.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedRunnableFutureTask()Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidblockUntilFinished()Deprecated.Blocks until the task has finished, or has been canceled without having been started.voidblockUntilStarted()Deprecated.Blocks until the task has started, or has been canceled without having been started.booleancancel(boolean interruptIfRunning)Deprecated.protected voidcancelWork()Deprecated.Cancels any work being done bydoWork().protected abstract RdoWork()Deprecated.Performs the work or computation.Rget()Deprecated.Rget(long timeout, TimeUnit unit)Deprecated.booleanisCancelled()Deprecated.booleanisDone()Deprecated.voidrun()Deprecated.
-
-
-
Method Detail
-
blockUntilStarted
public final void blockUntilStarted()
Deprecated.Blocks until the task has started, or has been canceled without having been started.
-
blockUntilFinished
public final void blockUntilFinished()
Deprecated.Blocks until the task has finished, or has been canceled without having been started.
-
get
public final R get() throws ExecutionException, InterruptedException
Deprecated.- Specified by:
getin interfaceFuture<R>- Throws:
ExecutionExceptionInterruptedException
-
get
public final R get(long timeout, TimeUnit unit) throws ExecutionException, InterruptedException, TimeoutException
Deprecated.- Specified by:
getin interfaceFuture<R>- Throws:
ExecutionExceptionInterruptedExceptionTimeoutException
-
cancel
public final boolean cancel(boolean interruptIfRunning)
Deprecated.
-
isCancelled
public final boolean isCancelled()
Deprecated.- Specified by:
isCancelledin interfaceFuture<R>
-
run
public final void run()
Deprecated.- Specified by:
runin interfaceRunnable- Specified by:
runin interfaceRunnableFuture<R>
-
doWork
protected abstract R doWork() throws E extends Exception
Deprecated.Performs the work or computation.
-
cancelWork
protected void cancelWork()
Deprecated.
-
-