Class 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 and remove(int) to unregister. A registered task will prevent tasks of lower priority from proceeding, and should call proceed(int), proceedNonBlocking(int) or proceedOrThrow(int) each time it wishes to check whether it is itself allowed to proceed.

    • Constructor Detail

      • PriorityTaskManager

        public PriorityTaskManager()
        Deprecated.
    • Method Detail

      • add

        public void add​(int priority)
        Deprecated.
        Register a new task. The task must call remove(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 of proceed(int).
        Parameters:
        priority - The priority of the task.
        Returns:
        Whether the task is allowed to proceed.
      • remove

        public void remove​(int priority)
        Deprecated.
        Unregister a task.
        Parameters:
        priority - The priority of the task.