Class PriorityTaskManager
- java.lang.Object
-
- com.google.android.exoplayer2.util.PriorityTaskManager
-
@Deprecated public final class PriorityTaskManager extends Object
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.Allows tasks with associated priorities to control how they proceed relative to one another.A task should call
add(int)
to register with the manager andremove(int)
to unregister. A registered task will prevent tasks of lower priority from proceeding, and should callproceed(int)
,proceedNonBlocking(int)
orproceedOrThrow(int)
each time it wishes to check whether it is itself allowed to proceed.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
PriorityTaskManager.PriorityTooLowException
Deprecated.Thrown when task attempts to proceed when another registered task has a higher priority.
-
Constructor Summary
Constructors Constructor Description PriorityTaskManager()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
add(int priority)
Deprecated.Register a new task.void
proceed(int priority)
Deprecated.Blocks until the task is allowed to proceed.boolean
proceedNonBlocking(int priority)
Deprecated.A non-blocking variant ofproceed(int)
.void
proceedOrThrow(int priority)
Deprecated.A throwing variant ofproceed(int)
.void
remove(int priority)
Deprecated.Unregister a task.
-
-
-
Method Detail
-
add
public void add(int priority)
Deprecated.Register a new task. The task must callremove(int)
when done.- Parameters:
priority
- The priority of the task. Larger values indicate higher priorities.
-
proceed
public void proceed(int priority) throws InterruptedException
Deprecated.Blocks until the task is allowed to proceed.- Parameters:
priority
- The priority of the task.- Throws:
InterruptedException
- If the thread is interrupted.
-
proceedNonBlocking
public boolean proceedNonBlocking(int priority)
Deprecated.A non-blocking variant ofproceed(int)
.- Parameters:
priority
- The priority of the task.- Returns:
- Whether the task is allowed to proceed.
-
proceedOrThrow
public void proceedOrThrow(int priority) throws PriorityTaskManager.PriorityTooLowException
Deprecated.A throwing variant ofproceed(int)
.- Parameters:
priority
- The priority of the task.- Throws:
PriorityTaskManager.PriorityTooLowException
- If the task is not allowed to proceed.
-
remove
public void remove(int priority)
Deprecated.Unregister a task.- Parameters:
priority
- The priority of the task.
-
-