• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.bumptech.glide.load.engine.executor;
2 
3 /**
4  * A simple interface for exposing the priority of a task. Lower integer values are treated as having higher priority
5  * with 0 being the highest priority possible.
6  */
7 public interface Prioritized {
8     /**
9      * Returns the priority of this task.
10      */
getPriority()11     int getPriority();
12 }
13